From baa0cabf823442640d40de7e33fb13069aff539d Mon Sep 17 00:00:00 2001 From: Aki Sasaki Date: Tue, 9 Jan 2018 17:07:14 -0800 Subject: [PATCH] cotv2 test wip --- scriptworker/test/data/cotv2/.taskcluster.yml | 191 + .../test/data/cotv2/action_relpro.json | 232 + scriptworker/test/data/cotv2/actions.json | 3105 + scriptworker/test/data/cotv2/cron.json | 74 + .../test/data/cotv2/decision_hg-push.json | 79 + scriptworker/test/data/cotv2/parameters.yml | 27 + scriptworker/test/data/cotv2/projects.yml | 334 + scriptworker/test/data/cotv2/pushlog.json | 4 + scriptworker/test/data/cotv2/task-graph.json | 291008 +++++++++++++++ scriptworker/test/test_cot_verify.py | 60 +- 10 files changed, 295111 insertions(+), 3 deletions(-) create mode 100644 scriptworker/test/data/cotv2/.taskcluster.yml create mode 100644 scriptworker/test/data/cotv2/action_relpro.json create mode 100644 scriptworker/test/data/cotv2/actions.json create mode 100644 scriptworker/test/data/cotv2/cron.json create mode 100644 scriptworker/test/data/cotv2/decision_hg-push.json create mode 100644 scriptworker/test/data/cotv2/parameters.yml create mode 100644 scriptworker/test/data/cotv2/projects.yml create mode 100644 scriptworker/test/data/cotv2/pushlog.json create mode 100644 scriptworker/test/data/cotv2/task-graph.json diff --git a/scriptworker/test/data/cotv2/.taskcluster.yml b/scriptworker/test/data/cotv2/.taskcluster.yml new file mode 100644 index 00000000..ced50c02 --- /dev/null +++ b/scriptworker/test/data/cotv2/.taskcluster.yml @@ -0,0 +1,191 @@ +# This file is rendered via JSON-e by +# - mozilla-taskcluster - https://docs.taskcluster.net/reference/integrations/mozilla-taskcluster/docs/taskcluster-yml +# - cron tasks - taskcluster/taskgraph/cron/decision.py +# - action tasks - taskcluster/taskgraph/actions/registry.py +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'}} + in: + taskId: {$if: 'tasks_for != "action"', then: '${as_slugid("decision")}'} + taskGroupId: + $if: 'tasks_for == "action"' + then: + '${action.taskGroupId}' + else: + '${as_slugid("decision")}' # same as taskId; this is how automation identifies a decision tsak + schedulerId: 'gecko-level-${repository.level}' + + created: {$fromNow: ''} + deadline: {$fromNow: '1 day'} + expires: {$fromNow: '1 year 1 second'} # 1 second so artifacts expire first, despite rounding errors + metadata: + $merge: + - owner: "${ownerEmail}" + source: "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + - $if: 'tasks_for == "hg-push"' + then: + name: "Gecko Decision Task" + description: 'The task that creates all of the other tasks in the task graph' + else: + $if: 'tasks_for == "action"' + then: + name: "Action: ${action.title}" + description: '${action.description}' + else: + name: "Decision Task for cron job ${cron.job_name}" + description: 'Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})' + + provisionerId: "aws-provisioner-v1" + workerType: "gecko-${repository.level}-decision" + + tags: + $if: 'tasks_for == "hg-push"' + then: {createdForUser: "${ownerEmail}"} + else: + $if: 'tasks_for == "action"' + then: + createdForUser: '${ownerEmail}' + kind: 'action-callback' + + routes: + $if: 'tasks_for == "hg-push"' + then: + - "index.gecko.v2.${repository.project}.latest.firefox.decision" + - "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision" + - "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision" + - "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}" + - "notify.email.${ownerEmail}.on-failed" + - "notify.email.${ownerEmail}.on-exception" + else: + - "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}" + - $if: 'tasks_for == "action"' + then: "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + else: "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}" + + scopes: + $if: 'tasks_for == "hg-push"' + then: + - 'assume:repo:${repoUrl[8:]}:*' + - 'queue:route:notify.email.${ownerEmail}.*' + else: + $if: 'tasks_for == "action"' + then: + - '${action.repo_scope}' + else: + - 'assume:repo:${repoUrl[8:]}:cron:${cron.job_name}' + + dependencies: [] + requires: all-completed + + priority: lowest + retries: 5 + + payload: + env: + # checkout-gecko uses these to check out the source; the inputs + # to `mach taskgraph decision` are all on the command line. + $merge: + - GECKO_BASE_REPOSITORY: 'https://hg.mozilla.org/mozilla-unified' + GECKO_HEAD_REPOSITORY: '${repoUrl}' + GECKO_HEAD_REF: '${push.revision}' + GECKO_HEAD_REV: '${push.revision}' + GECKO_COMMIT_MSG: {$if: 'tasks_for != "action"', then: '${push.comment}'} + HG_STORE_PATH: /builds/worker/checkouts/hg-store + TASKCLUSTER_CACHES: /builds/worker/checkouts + - $if: 'tasks_for == "action"' + then: + ACTION_TASK_GROUP_ID: '${ownTaskId}' + ACTION_TASK_ID: {$json: {$eval: 'taskId'}} + ACTION_TASK: {$json: {$eval: 'task'}} + ACTION_INPUT: {$json: {$eval: 'input'}} + ACTION_CALLBACK: '${action.cb_name}' + ACTION_PARAMETERS: {$json: {$eval: 'parameters'}} + + cache: + level-${repository.level}-checkouts-sparse-v1: /builds/worker/checkouts + + features: + taskclusterProxy: true + chainOfTrust: true + + # Note: This task is built server side without the context or tooling that + # exist in tree so we must hard code the hash + # XXX Changing this will break Chain of Trust without an associated puppet and + # scriptworker patch! + image: 'taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef' + + maxRunTime: 1800 + + command: + - /builds/worker/bin/run-task + - '--vcs-checkout=/builds/worker/checkouts/gecko' + - '--sparse-profile=build/sparse-profiles/taskgraph' + - '--' + - bash + - -cx + - $let: + extraArgs: {$if: 'tasks_for == "cron"', then: '${cron.quoted_args}', else: ''} + in: + $if: 'tasks_for == "action"' + then: > + cd /builds/worker/checkouts/gecko && + ln -s /builds/worker/artifacts artifacts && + ./mach --log-no-times taskgraph action-callback + else: > + cd /builds/worker/checkouts/gecko && + ln -s /builds/worker/artifacts artifacts && + ./mach --log-no-times taskgraph decision + --pushlog-id='${push.pushlog_id}' + --pushdate='${push.pushdate}' + --project='${repository.project}' + --message="$GECKO_COMMIT_MSG" + --owner='${ownerEmail}' + --level='${repository.level}' + --base-repository="$GECKO_BASE_REPOSITORY" + --head-repository="$GECKO_HEAD_REPOSITORY" + --head-ref="$GECKO_HEAD_REF" + --head-rev="$GECKO_HEAD_REV" + ${extraArgs} + + artifacts: + 'public': + type: 'directory' + path: '/builds/worker/artifacts' + expires: {$fromNow: '1 year'} + + extra: + $merge: + - treeherder: + $merge: + - machine: + platform: gecko-decision + - $if: 'tasks_for == "hg-push"' + then: + symbol: D + else: + $if: 'tasks_for == "action"' + then: + groupName: 'action-callback' + groupSymbol: AC + symbol: "${action.symbol}" + else: + groupSymbol: cron + symbol: "${cron.job_symbol}" + - $if: 'tasks_for == "action"' + then: + parent: '${action.taskGroupId}' + action: + name: '${action.name}' + context: + taskGroupId: '${action.taskGroupId}' + taskId: {$eval: 'taskId'} + input: {$eval: 'input'} + parameters: {$eval: 'parameters'} + - $if: 'tasks_for == "cron"' + then: + cron: {$json: {$eval: 'cron'}} + - tasks_for: '${tasks_for}' diff --git a/scriptworker/test/data/cotv2/action_relpro.json b/scriptworker/test/data/cotv2/action_relpro.json new file mode 100644 index 00000000..102ee7be --- /dev/null +++ b/scriptworker/test/data/cotv2/action_relpro.json @@ -0,0 +1,232 @@ +{ + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-decision", + "schedulerId": "gecko-level-3", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "dependencies": [], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "index.gecko.v2.maple.pushlog-id.343.actions.MP8uhRdMTjm__Q_sA0GTnA" + ], + "priority": "lowest", + "retries": 5, + "created": "2018-01-09T19:19:32.825Z", + "deadline": "2018-01-10T19:19:32.825Z", + "expires": "2019-01-09T19:19:33.825Z", + "scopes": [ + "assume:repo:hg.mozilla.org/projects/maple:*" + ], + "payload": { + "features": { + "taskclusterProxy": true, + "chainOfTrust": true + }, + "artifacts": { + "public": { + "path": "/builds/worker/artifacts", + "expires": "2019-01-09T19:19:32.825Z", + "type": "directory" + } + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "cache": { + "level-3-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "maxRunTime": 1800, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + ], + "env": { + "ACTION_TASK_ID": "null", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "ACTION_TASK": "null", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "ACTION_PARAMETERS": "{\"base_repository\":\"https://hg.mozilla.org/mozilla-unified\",\"build_date\":1515524845,\"build_number\":1,\"desktop_release_type\":\"\",\"do_not_optimize\":[],\"existing_tasks\":{},\"filters\":[\"check_servo\",\"target_tasks_method\"],\"head_ref\":\"054fe08d229f064a71bae9bb793e7ab8d95eff61\",\"head_repository\":\"https://hg.mozilla.org/projects/maple\",\"head_rev\":\"054fe08d229f064a71bae9bb793e7ab8d95eff61\",\"include_nightly\":true,\"level\":\"3\",\"message\":\" \",\"moz_build_date\":\"20180109190725\",\"next_version\":null,\"optimize_target_tasks\":true,\"owner\":\"asasaki@mozilla.com\",\"project\":\"maple\",\"pushdate\":1515524845,\"pushlog_id\":\"343\",\"release_history\":{},\"target_tasks_method\":\"mozilla_beta_tasks\",\"try_mode\":null,\"try_options\":null,\"try_task_config\":null}", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "ACTION_CALLBACK": "release_promotion_action", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "ACTION_TASK_GROUP_ID": "MP8uhRdMTjm__Q_sA0GTnA", + "ACTION_INPUT": "{\"build_number\":3,\"desktop_release_type\":\"devedition\",\"next_version\":\"58.0b24\",\"partial_updates\":{\"58.0b6\":{\"buildNumber\":\"1\",\"locales\":[\"zh-TW\",\"pa-IN\",\"gd\",\"gn\",\"gl\",\"ne-NP\",\"en-GB\",\"tr\",\"lv\",\"lt\",\"th\",\"te\",\"ta\",\"bn-IN\",\"de\",\"da\",\"pt-BR\",\"nb-NO\",\"gu-IN\",\"ga-IE\",\"es-CL\",\"el\",\"eo\",\"eu\",\"et\",\"ru\",\"rm\",\"ro\",\"dsb\",\"hsb\",\"be\",\"bg\",\"uk\",\"ast\",\"br\",\"bs\",\"ja\",\"hy-AM\",\"pt-PT\",\"es-AR\",\"ach\",\"nn-NO\",\"fy-NL\",\"or\",\"ja-JP-mac\",\"xh\",\"ca\",\"son\",\"cy\",\"cs\",\"hi-IN\",\"pl\",\"hr\",\"hu\",\"he\",\"uz\",\"ml\",\"mk\",\"ur\",\"cak\",\"zh-CN\",\"en-ZA\",\"ms\",\"mr\",\"my\",\"af\",\"vi\",\"is\",\"it\",\"an\",\"as\",\"ar\",\"bn-BD\",\"sv-SE\",\"az\",\"es-ES\",\"id\",\"nl\",\"lij\",\"kab\",\"fr\",\"fa\",\"ff\",\"mai\",\"fi\",\"ka\",\"kk\",\"sr\",\"sq\",\"ko\",\"kn\",\"km\",\"es-MX\",\"sk\",\"si\",\"sl\"]}},\"previous_graph_ids\":[\"VQU9QMO4Teq7zr91FhBusg\"],\"release_promotion_flavor\":\"promote_devedition\"}" + } + }, + "metadata": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/raw-file/054fe08d229f064a71bae9bb793e7ab8d95eff61/.taskcluster.yml", + "description": "Promote a release.", + "name": "Action: Release Promotion" + }, + "tags": { + "createdForUser": "mozilla-taskcluster-maintenance@mozilla.com", + "kind": "action-callback" + }, + "extra": { + "action": { + "name": "release-promotion", + "context": { + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "input": { + "build_number": 3, + "partial_updates": { + "58.0b6": { + "buildNumber": "1", + "locales": [ + "zh-TW", + "pa-IN", + "gd", + "gn", + "gl", + "ne-NP", + "en-GB", + "tr", + "lv", + "lt", + "th", + "te", + "ta", + "bn-IN", + "de", + "da", + "pt-BR", + "nb-NO", + "gu-IN", + "ga-IE", + "es-CL", + "el", + "eo", + "eu", + "et", + "ru", + "rm", + "ro", + "dsb", + "hsb", + "be", + "bg", + "uk", + "ast", + "br", + "bs", + "ja", + "hy-AM", + "pt-PT", + "es-AR", + "ach", + "nn-NO", + "fy-NL", + "or", + "ja-JP-mac", + "xh", + "ca", + "son", + "cy", + "cs", + "hi-IN", + "pl", + "hr", + "hu", + "he", + "uz", + "ml", + "mk", + "ur", + "cak", + "zh-CN", + "en-ZA", + "ms", + "mr", + "my", + "af", + "vi", + "is", + "it", + "an", + "as", + "ar", + "bn-BD", + "sv-SE", + "az", + "es-ES", + "id", + "nl", + "lij", + "kab", + "fr", + "fa", + "ff", + "mai", + "fi", + "ka", + "kk", + "sr", + "sq", + "ko", + "kn", + "km", + "es-MX", + "sk", + "si", + "sl" + ] + } + }, + "release_promotion_flavor": "promote_devedition", + "previous_graph_ids": [ + "VQU9QMO4Teq7zr91FhBusg" + ], + "desktop_release_type": "devedition", + "next_version": "58.0b24" + }, + "taskId": null, + "parameters": { + "release_history": {}, + "try_options": null, + "owner": "asasaki@mozilla.com", + "include_nightly": true, + "filters": [ + "check_servo", + "target_tasks_method" + ], + "pushlog_id": "343", + "message": " ", + "try_mode": null, + "existing_tasks": {}, + "head_ref": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "build_date": 1515524845, + "build_number": 1, + "head_rev": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "desktop_release_type": "", + "base_repository": "https://hg.mozilla.org/mozilla-unified", + "do_not_optimize": [], + "next_version": null, + "moz_build_date": "20180109190725", + "head_repository": "https://hg.mozilla.org/projects/maple", + "level": "3", + "optimize_target_tasks": true, + "target_tasks_method": "mozilla_beta_tasks", + "project": "maple", + "try_task_config": null, + "pushdate": 1515524845 + } + } + }, + "treeherder": { + "machine": { + "platform": "gecko-decision" + }, + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "Relpro" + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "tasks_for": "action" + } +} diff --git a/scriptworker/test/data/cotv2/actions.json b/scriptworker/test/data/cotv2/actions.json new file mode 100644 index 00000000..0e1835fd --- /dev/null +++ b/scriptworker/test/data/cotv2/actions.json @@ -0,0 +1,3105 @@ +{ + "actions": [ + { + "context": [ + { + "test-type": "mochitest" + }, + { + "test-type": "reftest" + } + ], + "description": "Retriggers the specified mochitest/reftest job with additional options", + "kind": "task", + "name": "retrigger-mochitest-reftest-with-options", + "schema": { + "additionalProperties": false, + "properties": { + "environment": { + "additionalProperties": { + "type": "string" + }, + "default": { + "MOZ_LOG": "" + }, + "description": "Extra environment variables to use for this run", + "title": "Extra environment variables", + "type": "object" + }, + "logLevel": { + "default": "debug", + "description": "Log level for output (default is DEBUG, which is highest)", + "enum": [ + "debug", + "info", + "warning", + "error", + "critical" + ], + "title": "Log level", + "type": "string" + }, + "path": { + "default": "", + "description": "Path of test to retrigger", + "maxLength": 255, + "title": "Path name", + "type": "string" + }, + "preferences": { + "additionalProperties": { + "type": "string" + }, + "default": { + "mygeckopreferences.pref": "myvalue2" + }, + "description": "Extra gecko (about:config) preferences to use for this run", + "title": "Extra gecko (about:config) preferences", + "type": "object" + }, + "repeat": { + "default": 30, + "description": "Run tests repeatedly (usually used in conjunction with runUntilFail)", + "minimum": 1, + "title": "Run tests N times", + "type": "integer" + }, + "runUntilFail": { + "default": true, + "description": "Runs the specified set of tests repeatedly until failure (or 30 times)", + "title": "Run until failure", + "type": "boolean" + } + }, + "required": [ + "path" + ], + "type": "object" + }, + "task": { + "$let": { + "action": { + "cb_name": "mochitest_retrigger_action", + "description": "Retriggers the specified mochitest/reftest job with additional options", + "name": "retrigger-mochitest-reftest-with-options", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "tr", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Mochitest/Reftest Retrigger" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Mochitest/Reftest Retrigger" + }, + { + "context": [ + {} + ], + "description": "Take the label of the current task, and trigger the task with that label on previous pushes in the same project.", + "kind": "task", + "name": "backfill", + "schema": { + "additionalProperties": false, + "properties": { + "depth": { + "default": 5, + "description": "The number of previous pushes before the current push to attempt to trigger this task on.", + "maximum": 10, + "minimum": 1, + "title": "Depth", + "type": "integer" + } + }, + "type": "object" + }, + "task": { + "$let": { + "action": { + "cb_name": "backfill_action", + "description": "Take the label of the current task, and trigger the task with that label on previous pushes in the same project.", + "name": "backfill", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "Bk", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Backfill" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Backfill" + }, + { + "context": [ + { + "os": "linux", + "worker-implementation": "docker-worker" + } + ], + "description": "Create a clone of the task for use in interactive tasks.\nThis does not update any dependencies or cause any downstream tasks to be retriggered.\nThe new task will be altered to\n * Set task.payload.features.interactive = true\n * Strip task.payload.caches to avoid poisoning\n * Ensures task.payload.maxRunTime is minimum of 180 minutes\n * Strip task.routes to avoid side-effects\n * Set the environment variable TASKCLUSTER_INTERACTIVE=true", + "kind": "task", + "name": "docker-worker-linux-loaner", + "task": { + "$merge": [ + { + "$map": { + "$eval": "task" + }, + "each(s)": { + "$if": "!(s.key in [\"routes\", \"dependencies\", \"requires\", \"scopes\", \"payload\"])", + "then": { + "${s.key}": { + "$eval": "s.val" + } + } + } + }, + { + "created": { + "$fromNow": "" + } + }, + { + "deadline": { + "$fromNow": "12 hours" + } + }, + { + "expires": { + "$fromNow": "7 days" + } + }, + { + "scopes": { + "$map": { + "$eval": "task.scopes" + }, + "each(scope)": { + "$if": "scope[:7] != \"docker-worker:cache:\"", + "then": "${scope}" + } + } + }, + { + "payload": { + "$merge": [ + { + "$map": { + "$eval": "task.payload" + }, + "each(s)": { + "$if": "!(s.key in [\"artifacts\", \"cache\"])", + "then": { + "${s.key}": { + "$eval": "s.val" + } + } + } + }, + { + "env": { + "$merge": [ + { + "$if": "\"env\" in task.payload", + "then": { + "$eval": "task.payload.env" + } + }, + { + "TASKCLUSTER_INTERACTIVE": true + } + ] + }, + "features": { + "$merge": [ + { + "$if": "\"features\" in task.payload", + "then": { + "$eval": "task.payload.features" + } + }, + { + "interactive": true + } + ] + }, + "maxRunTime": { + "$eval": "max(task.payload.maxRunTime, 3 * 60 * 60)" + } + } + ] + } + } + ] + }, + "title": "Create Loaner (Docker Worker Linux)" + }, + { + "context": [ + {} + ], + "description": "Create a clone of the task.", + "kind": "task", + "name": "retrigger", + "schema": { + "properties": { + "downstream": { + "default": false, + "description": "If true, downstream tasks from this one will be cloned as well. The dependencies will be updated to work with the new task at the root.", + "type": "boolean" + }, + "times": { + "default": 1, + "description": "How many times to run each task.", + "maximum": 6, + "minimum": 1, + "title": "Times", + "type": "integer" + } + }, + "type": "object" + }, + "task": { + "$let": { + "action": { + "cb_name": "retrigger_action", + "description": "Create a clone of the task.\n\n", + "name": "retrigger", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "rt", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Retrigger" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Retrigger" + }, + { + "context": [ + { + "worker-implementation": "docker-worker" + } + ], + "description": "Purge any caches associated with this task across all workers of the same workertype as the task.", + "kind": "task", + "name": "purge-caches", + "task": { + "$let": { + "action": { + "cb_name": "purge_caches_action", + "description": "Purge any caches associated with this task across all workers of the same workertype as the task.", + "name": "purge-caches", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "purge-caches", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Purge Caches" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Purge Caches" + }, + { + "context": [], + "description": "Add all Talos tasks to a push.", + "kind": "task", + "name": "run-all-talos", + "schema": { + "additionalProperties": false, + "properties": { + "times": { + "default": 1, + "description": "How many times to run each task.", + "maximum": 6, + "minimum": 1, + "title": "Times", + "type": "integer" + } + }, + "type": "object" + }, + "task": { + "$let": { + "action": { + "cb_name": "add_all_talos", + "description": "Add all Talos tasks to a push.", + "name": "run-all-talos", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "raT", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Run All Talos Tests" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Run All Talos Tests" + }, + { + "context": [], + "description": "Run tests in the selected push that were optimized away, usually by SETA.\nThis action is for use on pushes that will be merged into another branch,to check that optimization hasn't hidden any failures.", + "kind": "task", + "name": "run-missing-tests", + "task": { + "$let": { + "action": { + "cb_name": "run_missing_tests", + "description": "Run tests in the selected push that were optimized away, usually by SETA.\nThis action is for use on pushes that will be merged into another branch,to check that optimization hasn't hidden any failures.", + "name": "run-missing-tests", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "rmt", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Run Missing Tests" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Run Missing Tests" + }, + { + "context": [], + "description": "Cancel all running and pending tasks created by the decision task this action task is associated with.", + "kind": "task", + "name": "cancel-all", + "task": { + "$let": { + "action": { + "cb_name": "cancel_all_action", + "description": "Cancel all running and pending tasks created by the decision task this action task is associated with.", + "name": "cancel-all", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "cAll", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Cancel All" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Cancel All" + }, + { + "context": [], + "description": "Promote a release.", + "kind": "task", + "name": "release-promotion", + "schema": { + "properties": { + "build_number": { + "default": 1, + "description": "The release build number. Starts at 1 per release version, and increments on rebuild.", + "minimum": 1, + "title": "The release build number", + "type": "integer" + }, + "desktop_release_type": { + "default": "", + "type": "string" + }, + "do_not_optimize": { + "description": "Optional: a list of labels to avoid optimizing out of the graph (to force a rerun of, say, funsize docker-image tasks).", + "items": { + "type": "string" + }, + "type": "array" + }, + "next_version": { + "default": "", + "description": "Next version.", + "type": "string" + }, + "partial_updates": { + "additionalProperties": { + "additionalProperties": false, + "properties": { + "buildNumber": { + "type": "number" + }, + "locales": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "buildNumber", + "locales" + ], + "type": "object" + }, + "default": {}, + "description": "Partial updates.", + "type": "object" + }, + "previous_graph_ids": { + "description": "Optional: an array of taskIds of decision or action tasks from the previous graph(s) to use to populate our `previous_graph_kinds`.", + "items": { + "type": "string" + }, + "type": "array" + }, + "rebuild_kinds": { + "description": "Optional: an array of kinds to ignore from the previous graph(s).", + "items": { + "type": "string" + }, + "type": "array" + }, + "release_promotion_flavor": { + "description": "The flavor of release promotion to perform.", + "enum": [ + "promote_devedition", + "promote_fennec", + "promote_firefox", + "push_devedition", + "push_firefox", + "ship_devedition", + "ship_fennec", + "ship_firefox" + ], + "type": "string" + }, + "revision": { + "description": "Optional: the revision to promote. If specified, and if neither `pushlog_id` nor `previous_graph_kinds` is specified, find the `pushlog_id using the revision.", + "title": "Optional: revision to promote", + "type": "string" + }, + "target_tasks_method": { + "description": "Optional: the target task method to use to generate the new graph.", + "title": "target task method", + "type": "string" + }, + "uptake_monitoring_platforms": { + "default": [], + "items": { + "enum": [ + "macosx", + "win32", + "win64", + "linux", + "linux64" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "release_promotion_flavor", + "build_number" + ], + "type": "object" + }, + "task": { + "$let": { + "action": { + "cb_name": "release_promotion_action", + "description": "Promote a release.", + "name": "release-promotion", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "Relpro", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Release Promotion" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Release Promotion" + }, + { + "context": [], + "description": "Add new jobs using task labels.", + "kind": "task", + "name": "add-new-jobs", + "schema": { + "properties": { + "tasks": { + "description": "An array of task labels", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "task": { + "$let": { + "action": { + "cb_name": "add_new_jobs_action", + "description": "Add new jobs using task labels.", + "name": "add-new-jobs", + "repo_scope": "assume:repo:hg.mozilla.org/projects/maple:*", + "symbol": "add-new", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "title": "Add new jobs" + }, + "push": { + "owner": "mozilla-taskcluster-maintenance@mozilla.com", + "pushlog_id": "343", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + }, + "repository": { + "level": "3", + "project": "maple", + "url": "https://hg.mozilla.org/projects/maple" + }, + "tasks_for": "action" + }, + "in": { + "$let": { + "ownerEmail": { + "$if": "\"@\" in push.owner", + "else": "${push.owner}@noreply.mozilla.org", + "then": "${push.owner}" + }, + "repoUrl": { + "$if": "repository.url[-1] == \"/\"", + "else": { + "$eval": "repository.url" + }, + "then": { + "$eval": "repository.url[:-1]" + } + } + }, + "in": { + "created": { + "$fromNow": "" + }, + "deadline": { + "$fromNow": "1 day" + }, + "dependencies": [], + "expires": { + "$fromNow": "1 year 1 second" + }, + "extra": { + "$merge": [ + { + "treeherder": { + "$merge": [ + { + "machine": { + "platform": "gecko-decision" + } + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "groupSymbol": "cron", + "symbol": "${cron.job_symbol}" + }, + "then": { + "groupName": "action-callback", + "groupSymbol": "AC", + "symbol": "${action.symbol}" + } + }, + "then": { + "symbol": "D" + } + } + ] + } + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "action": { + "context": { + "input": { + "$eval": "input" + }, + "parameters": { + "$eval": "parameters" + }, + "taskGroupId": "${action.taskGroupId}", + "taskId": { + "$eval": "taskId" + } + }, + "name": "${action.name}" + }, + "parent": "${action.taskGroupId}" + } + }, + { + "$if": "tasks_for == \"cron\"", + "then": { + "cron": { + "$json": { + "$eval": "cron" + } + } + } + }, + { + "tasks_for": "${tasks_for}" + } + ] + }, + "metadata": { + "$merge": [ + { + "owner": "${ownerEmail}", + "source": "${repoUrl}/raw-file/${push.revision}/.taskcluster.yml" + }, + { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": { + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/${cron.task_id})", + "name": "Decision Task for cron job ${cron.job_name}" + }, + "then": { + "description": "${action.description}", + "name": "Action: ${action.title}" + } + }, + "then": { + "description": "The task that creates all of the other tasks in the task graph", + "name": "Gecko Decision Task" + } + } + ] + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "$fromNow": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-${repository.level}-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + { + "$let": { + "extraArgs": { + "$if": "tasks_for == \"cron\"", + "else": "", + "then": "${cron.quoted_args}" + } + }, + "in": { + "$if": "tasks_for == \"action\"", + "else": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='${push.pushlog_id}' --pushdate='${push.pushdate}' --project='${repository.project}' --message=\"$GECKO_COMMIT_MSG\" --owner='${ownerEmail}' --level='${repository.level}' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" ${extraArgs}\n", + "then": "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph action-callback\n" + } + } + ], + "env": { + "$merge": [ + { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_COMMIT_MSG": { + "$if": "tasks_for != \"action\"", + "then": "${push.comment}" + }, + "GECKO_HEAD_REF": "${push.revision}", + "GECKO_HEAD_REPOSITORY": "${repoUrl}", + "GECKO_HEAD_REV": "${push.revision}", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + { + "$if": "tasks_for == \"action\"", + "then": { + "ACTION_CALLBACK": "${action.cb_name}", + "ACTION_INPUT": { + "$json": { + "$eval": "input" + } + }, + "ACTION_PARAMETERS": { + "$json": { + "$eval": "parameters" + } + }, + "ACTION_TASK": { + "$json": { + "$eval": "task" + } + }, + "ACTION_TASK_GROUP_ID": "${ownTaskId}", + "ACTION_TASK_ID": { + "$json": { + "$eval": "taskId" + } + } + } + } + ] + }, + "features": { + "chainOfTrust": true, + "taskclusterProxy": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800 + }, + "priority": "lowest", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": { + "$if": "tasks_for == \"hg-push\"", + "else": [ + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + { + "$if": "tasks_for == \"action\"", + "else": "index.gecko.v2.${repository.project}.latest.firefox.decision-${cron.job_name}", + "then": "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.actions.${ownTaskId}" + } + ], + "then": [ + "index.gecko.v2.${repository.project}.latest.firefox.decision", + "index.gecko.v2.${repository.project}.revision.${push.revision}.firefox.decision", + "index.gecko.v2.${repository.project}.pushlog-id.${push.pushlog_id}.decision", + "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}", + "notify.email.${ownerEmail}.on-failed", + "notify.email.${ownerEmail}.on-exception" + ] + }, + "schedulerId": "gecko-level-${repository.level}", + "scopes": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "else": [ + "assume:repo:${repoUrl[8:]}:cron:${cron.job_name}" + ], + "then": [ + "${action.repo_scope}" + ] + }, + "then": [ + "assume:repo:${repoUrl[8:]}:*", + "queue:route:notify.email.${ownerEmail}.*" + ] + }, + "tags": { + "$if": "tasks_for == \"hg-push\"", + "else": { + "$if": "tasks_for == \"action\"", + "then": { + "createdForUser": "${ownerEmail}", + "kind": "action-callback" + } + }, + "then": { + "createdForUser": "${ownerEmail}" + } + }, + "taskGroupId": { + "$if": "tasks_for == \"action\"", + "else": "${as_slugid(\"decision\")}", + "then": "${action.taskGroupId}" + }, + "taskId": { + "$if": "tasks_for != \"action\"", + "then": "${as_slugid(\"decision\")}" + }, + "workerType": "gecko-${repository.level}-decision" + } + } + }, + "title": "Add new jobs" + } + ], + "variables": { + "parameters": { + "base_repository": "https://hg.mozilla.org/mozilla-unified", + "build_date": 1515524845, + "build_number": 1, + "desktop_release_type": "", + "do_not_optimize": [], + "existing_tasks": {}, + "filters": [ + "check_servo", + "target_tasks_method" + ], + "head_ref": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "head_repository": "https://hg.mozilla.org/projects/maple", + "head_rev": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "include_nightly": true, + "level": "3", + "message": " ", + "moz_build_date": "20180109190725", + "next_version": null, + "optimize_target_tasks": true, + "owner": "asasaki@mozilla.com", + "project": "maple", + "pushdate": 1515524845, + "pushlog_id": "343", + "release_history": {}, + "target_tasks_method": "mozilla_beta_tasks", + "try_mode": null, + "try_options": null, + "try_task_config": null + } + }, + "version": 1 +} \ No newline at end of file diff --git a/scriptworker/test/data/cotv2/cron.json b/scriptworker/test/data/cotv2/cron.json new file mode 100644 index 00000000..bcd6ef0a --- /dev/null +++ b/scriptworker/test/data/cotv2/cron.json @@ -0,0 +1,74 @@ +{ + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-decision", + "schedulerId": "gecko-level-3", + "taskGroupId": "D4euZNyCRtuBci-fnsfn7A", + "dependencies": [], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.-1", + "index.gecko.v2.maple.latest.firefox.decision-nightly-android" + ], + "priority": "lowest", + "retries": 5, + "created": "2018-01-10T01:01:34.734Z", + "deadline": "2018-01-11T01:01:34.734Z", + "expires": "2019-01-10T01:01:35.734Z", + "scopes": [ + "assume:repo:hg.mozilla.org/projects/maple:cron:nightly-android" + ], + "payload": { + "features": { + "taskclusterProxy": true, + "chainOfTrust": true + }, + "artifacts": { + "public": { + "path": "/builds/worker/artifacts", + "expires": "2019-01-10T01:01:34.734Z", + "type": "directory" + } + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "cache": { + "level-3-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "maxRunTime": 1800, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='-1' --pushdate='0' --project='maple' --message=\"$GECKO_COMMIT_MSG\" --owner='nobody@noreply.mozilla.org' --level='3' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" --target-tasks-method=nightly_fennec\n" + ], + "env": { + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_COMMIT_MSG": "", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "metadata": { + "owner": "nobody@noreply.mozilla.org", + "source": "https://hg.mozilla.org/projects/maple/raw-file/054fe08d229f064a71bae9bb793e7ab8d95eff61/.taskcluster.yml", + "name": "Decision Task for cron job nightly-android", + "description": "Created by a [cron task](https://tools.taskcluster.net/tasks/JLDb7ljhS4e4-QArv6FDWw)" + }, + "tags": {}, + "extra": { + "cron": "{\"job_name\":\"nightly-android\",\"job_symbol\":\"Na\",\"quoted_args\":\"--target-tasks-method=nightly_fennec\",\"task_id\":\"JLDb7ljhS4e4-QArv6FDWw\"}", + "treeherder": { + "machine": { + "platform": "gecko-decision" + }, + "groupSymbol": "cron", + "symbol": "Na" + }, + "tasks_for": "cron" + } +} diff --git a/scriptworker/test/data/cotv2/decision_hg-push.json b/scriptworker/test/data/cotv2/decision_hg-push.json new file mode 100644 index 00000000..8364e9bd --- /dev/null +++ b/scriptworker/test/data/cotv2/decision_hg-push.json @@ -0,0 +1,79 @@ +{ + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-decision", + "schedulerId": "gecko-level-3", + "taskGroupId": "VQU9QMO4Teq7zr91FhBusg", + "dependencies": [], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.maple.latest.firefox.decision", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.decision", + "index.gecko.v2.maple.pushlog-id.343.decision", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "notify.email.asasaki@mozilla.com.on-failed", + "notify.email.asasaki@mozilla.com.on-exception" + ], + "priority": "lowest", + "retries": 5, + "created": "2018-01-09T19:07:36.291Z", + "deadline": "2018-01-10T19:07:36.291Z", + "expires": "2019-01-09T19:07:37.291Z", + "scopes": [ + "assume:repo:hg.mozilla.org/projects/maple:*", + "queue:route:notify.email.asasaki@mozilla.com.*" + ], + "payload": { + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_COMMIT_MSG": " ", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + "cache": { + "level-3-checkouts-sparse-v1": "/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true, + "chainOfTrust": true + }, + "image": "taskcluster/decision:2.0.0@sha256:4039fd878e5700b326d4a636e28c595c053fbcb53909c1db84ad1f513cf644ef", + "maxRunTime": 1800, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/taskgraph", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ln -s /builds/worker/artifacts artifacts && ./mach --log-no-times taskgraph decision --pushlog-id='343' --pushdate='1515524845' --project='maple' --message=\"$GECKO_COMMIT_MSG\" --owner='asasaki@mozilla.com' --level='3' --base-repository=\"$GECKO_BASE_REPOSITORY\" --head-repository=\"$GECKO_HEAD_REPOSITORY\" --head-ref=\"$GECKO_HEAD_REF\" --head-rev=\"$GECKO_HEAD_REV\" \n" + ], + "artifacts": { + "public": { + "type": "directory", + "path": "/builds/worker/artifacts", + "expires": "2019-01-09T19:07:36.291Z" + } + } + }, + "metadata": { + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/raw-file/054fe08d229f064a71bae9bb793e7ab8d95eff61/.taskcluster.yml", + "name": "Gecko Decision Task", + "description": "The task that creates all of the other tasks in the task graph" + }, + "tags": { + "createdForUser": "asasaki@mozilla.com" + }, + "extra": { + "treeherder": { + "machine": { + "platform": "gecko-decision" + }, + "symbol": "D" + }, + "tasks_for": "hg-push" + } +} \ No newline at end of file diff --git a/scriptworker/test/data/cotv2/parameters.yml b/scriptworker/test/data/cotv2/parameters.yml new file mode 100644 index 00000000..c3e9cc8d --- /dev/null +++ b/scriptworker/test/data/cotv2/parameters.yml @@ -0,0 +1,27 @@ +base_repository: https://hg.mozilla.org/mozilla-unified +build_date: 1515524845 +build_number: 1 +desktop_release_type: '' +do_not_optimize: [] +existing_tasks: {} +filters: +- check_servo +- target_tasks_method +head_ref: 054fe08d229f064a71bae9bb793e7ab8d95eff61 +head_repository: https://hg.mozilla.org/projects/maple +head_rev: 054fe08d229f064a71bae9bb793e7ab8d95eff61 +include_nightly: true +level: '3' +message: ' ' +moz_build_date: '20180109190725' +next_version: null +optimize_target_tasks: true +owner: asasaki@mozilla.com +project: maple +pushdate: 1515524845 +pushlog_id: '343' +release_history: {} +target_tasks_method: mozilla_beta_tasks +try_mode: null +try_options: null +try_task_config: null diff --git a/scriptworker/test/data/cotv2/projects.yml b/scriptworker/test/data/cotv2/projects.yml new file mode 100644 index 00000000..32580040 --- /dev/null +++ b/scriptworker/test/data/cotv2/projects.yml @@ -0,0 +1,334 @@ +# This file contains configuration for each of the repositories containing the +# Gecko source tree. +# +# Repositories are also known as projects (mostly within the +# taskgraph-generation code) and as branches (although they are not Mercurial +# branches). +# +# Structure +# --------- +# +# Each project is keyed by its "alias", a short, slash-free name for the project. +# +# The value is an object describing the project with the following keys: +# +# - `repo` -- the https repository URL +# - `repo_type` -- always `hg` (for later expansion) +# - `access` -- the name of the group with access to this repository; typically `scm_level_{1,2,3}`. +# - `trust_domain` -- separation within an access level of projects with different organizations +# - `features` -- features that should be enabled for this project, as an object with boolean +# values, defaulting to false +# - `buildbot` -- Buildbot builders configured for the branch +# - `taskcluster-docker-routes-v1` -- index namespaces of the form `docker.images.v1..*` +# - `taskcluster-docker-routes-v2` -- index namespaces of the form `docker.images.v2.level-.*` +# - `taskcluster-cron` -- tasks defined in `.cron.yml` can run for this project +# - `taskcluster-push` -- decision tasks run for pushes to this project's repository +--- +ash: + repo: https://hg.mozilla.org/projects/ash + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +mozilla-release: + repo: https://hg.mozilla.org/releases/mozilla-release + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +mozilla-esr52: + repo: https://hg.mozilla.org/releases/mozilla-esr52 + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +comm-esr52: + repo: https://hg.mozilla.org/releases/comm-esr52 + repo_type: hg + access: scm_level_3 + trust_domain: comm + features: + taskcluster-cron: false + taskcluster-push: false +oak: + repo: https://hg.mozilla.org/projects/oak + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +pine: + repo: https://hg.mozilla.org/projects/pine + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +mozilla-beta: + repo: https://hg.mozilla.org/releases/mozilla-beta + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +comm-beta: + repo: https://hg.mozilla.org/releases/comm-beta + repo_type: hg + access: scm_level_3 + trust_domain: comm + features: + taskcluster-cron: false + taskcluster-push: false +mozilla-inbound: + repo: https://hg.mozilla.org/integration/mozilla-inbound + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + is-trunk: true + taskcluster-cron: true + taskcluster-push: true +mozilla-central: + repo: https://hg.mozilla.org/mozilla-central + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + is-trunk: true + taskcluster-cron: true + taskcluster-push: true +comm-central: + repo: https://hg.mozilla.org/comm-central + repo_type: hg + access: scm_level_3 + trust_domain: comm + features: + taskcluster-cron: false + taskcluster-push: true +alder: + repo: https://hg.mozilla.org/projects/alder + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +cedar: + repo: https://hg.mozilla.org/projects/cedar + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +holly: + repo: https://hg.mozilla.org/projects/holly + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +birch: + repo: https://hg.mozilla.org/projects/birch + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +cypress: + repo: https://hg.mozilla.org/projects/cypress + repo_type: hg + access: scm_level_2 + trust_domain: comm + features: + taskcluster-cron: true + taskcluster-push: true +ux: + repo: https://hg.mozilla.org/projects/ux + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: false + taskcluster-push: false +elm: + repo: https://hg.mozilla.org/projects/elm + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +graphics: + repo: https://hg.mozilla.org/projects/graphics + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +try: + repo: https://hg.mozilla.org/try + repo_type: hg + access: scm_level_1 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: false + taskcluster-push: true +stylo-try: + repo: https://hg.mozilla.org/incubator/stylo-try + repo_type: hg + access: scm_level_1 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: false + taskcluster-push: true +try-comm-central: + repo: https://hg.mozilla.org/try-comm-central + repo_type: hg + access: scm_level_1 + trust_domain: comm + features: + taskcluster-cron: false + taskcluster-push: true +larch: + repo: https://hg.mozilla.org/projects/larch + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +maple: + repo: https://hg.mozilla.org/projects/maple + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +fig: + repo: https://hg.mozilla.org/projects/fig + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +gum: + repo: https://hg.mozilla.org/projects/gum + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +jamun: + repo: https://hg.mozilla.org/projects/jamun + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: true + taskcluster-push: true +autoland: + repo: https://hg.mozilla.org/integration/autoland + repo_type: hg + access: scm_level_3 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + is-trunk: true + taskcluster-cron: true + taskcluster-push: true +stylo: + repo: https://hg.mozilla.org/incubator/stylo + repo_type: hg + access: scm_level_2 + trust_domain: gecko + features: + buildbot: true + taskcluster-docker-routes-v1: true + taskcluster-docker-routes-v2: true + taskcluster-cron: false + taskcluster-push: true + diff --git a/scriptworker/test/data/cotv2/pushlog.json b/scriptworker/test/data/cotv2/pushlog.json new file mode 100644 index 00000000..6a87218b --- /dev/null +++ b/scriptworker/test/data/cotv2/pushlog.json @@ -0,0 +1,4 @@ +{ +"lastpushid": 343, +"pushes": {"343": {"changesets": [{"author": "Aki Sasaki \u003casasaki@mozilla.com\u003e", "branch": "default", "desc": "fix yaml", "files": ["taskcluster/ci/docker-image/kind.yml"], "node": "054fe08d229f064a71bae9bb793e7ab8d95eff61", "parents": ["7ce449ebc213e11232cf6b2b417256893194f21f"], "tags": ["tip"]}], "date": 1515524845, "user": "asasaki@mozilla.com"}} +} diff --git a/scriptworker/test/data/cotv2/task-graph.json b/scriptworker/test/data/cotv2/task-graph.json new file mode 100644 index 00000000..eab1da25 --- /dev/null +++ b/scriptworker/test/data/cotv2/task-graph.json @@ -0,0 +1,291008 @@ +{ + "A-Cgx0U3S9WFuJeGLjoYdQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.54b3b9d5047d7535bbb6" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.54b3b9d5047d7535bbb6" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-4", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "A-Cgx0U3S9WFuJeGLjoYdQ" + }, + "A-rOlIQETQGbC0n710S_9w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6bca34741a11b9d0cbe7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6bca34741a11b9d0cbe7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "A-rOlIQETQGbC0n710S_9w" + }, + "A3FZI23XTriq-Vha_WeLHA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=7" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b3da90353e52e41dda00" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b3da90353e52e41dda00" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-7", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "A3FZI23XTriq-Vha_WeLHA" + }, + "A4gdn58-SRGPsc16CXhvcA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b7b8de387f87e8631da7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b7b8de387f87e8631da7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "A4gdn58-SRGPsc16CXhvcA" + }, + "A4wRWm5ASpmpw5EB0fgdSQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=reftest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-reftests-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "A4wRWm5ASpmpw5EB0fgdSQ" + }, + "A7zP88ZRRMW6zfhrGmq3tw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "C3", + "tier": 2 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e95f10d51b5d0a23ee60" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e95f10d51b5d0a23ee60" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "A7zP88ZRRMW6zfhrGmq3tw" + }, + "AAIpMYFpSvmWYbKHn7rEDQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --headless --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --headless --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-marionette-headless-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "AAIpMYFpSvmWYbKHn7rEDQ" + }, + "AAV7bekaQZGX3Yv-dqLm7w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.856807651a8850833d90" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.856807651a8850833d90" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AAV7bekaQZGX3Yv-dqLm7w" + }, + "AAaiVKvRQqKhd7359a0eQA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fd75f1225915892c00cd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fd75f1225915892c00cd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AAaiVKvRQqKhd7359a0eQA" + }, + "AB62MkPMRMSX9wOWin8siw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.42f74f26b31db03ca594" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.42f74f26b31db03ca594" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AB62MkPMRMSX9wOWin8siw" + }, + "AC-VBkdUR2mJjqcYp3mgow": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C2", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.21e3b8c13904b04a1b92" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.21e3b8c13904b04a1b92" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AC-VBkdUR2mJjqcYp3mgow" + }, + "ACCk3nP9R22Qe9Om3DtDVQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-asan/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Drteyl6bQ5eXbG9YIua45w", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Bo", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Opt ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-asan/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-asan-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "asan-tc", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@Drteyl6bQ5eXbG9YIua45w public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "opt asan", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-asan-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-asan-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-asan-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-asan-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-asan-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-asan/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "ACr08vraSHG0duP1zZzdiQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "7", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d7535fc5e378f7c6eb46" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d7535fc5e378f7c6eb46" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ACr08vraSHG0duP1zZzdiQ" + }, + "AD18WIKWQSePMSOTwaKrfA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-8", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "AD18WIKWQSePMSOTwaKrfA" + }, + "ADrS6sbYRl2K2ZZzbgjlVg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.64a10f023508ac6d27f9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.64a10f023508ac6d27f9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ADrS6sbYRl2K2ZZzbgjlVg" + }, + "AEBQ6hPGSmS0CycUivyUGg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c24e7b6825a9fc30b802" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c24e7b6825a9fc30b802" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AEBQ6hPGSmS0CycUivyUGg" + }, + "AFAjTOqLSpCpTXwupXatBw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "AFAjTOqLSpCpTXwupXatBw" + }, + "AGN2emsaRfuM7Ha8iEXC9A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.42f22fc39676f6d370fc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.42f22fc39676f6d370fc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AGN2emsaRfuM7Ha8iEXC9A" + }, + "AGofothXRuOcwHakBbWZCA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-media-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b4f38e273e8afb94c273" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b4f38e273e8afb94c273" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AGofothXRuOcwHakBbWZCA" + }, + "AGxE94cyRaaClTrWas00xw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.06d521700e9ad9472f8f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.06d521700e9ad9472f8f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AGxE94cyRaaClTrWas00xw" + }, + "AHlaYl6CQWKK65O4iaapAQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.81d473fc9eefcdefa726" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.81d473fc9eefcdefa726" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AHlaYl6CQWKK65O4iaapAQ" + }, + "AJKEtnwgTt-jGldERTOudw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn9", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cd02e224c2cce15fc4bd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cd02e224c2cce15fc4bd" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AJKEtnwgTt-jGldERTOudw" + }, + "AJnmaveTSfCfqlho_UGeeQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c4545c625dd8eaf78827" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c4545c625dd8eaf78827" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AJnmaveTSfCfqlho_UGeeQ" + }, + "AN3oCcLCQXag4EyUY3yLXw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-2", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "AN3oCcLCQXag4EyUY3yLXw" + }, + "AP7zdWCzSLa8cAMKyFwwAQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng", + "build-signing": "QIRVASzTSGi3PKQxGbhDLw", + "repackage": "BQMJQ_mNQRWvcw5mC4-vhw" + }, + "kind": "repackage-signing", + "label": "repackage-signing-linux64-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "BQMJQ_mNQRWvcw5mC4-vhw", + "IIQOnLdoTueU9hBgwCPS7Q", + "P4fV6_sIRbaB1wx8qiJ0ng", + "QIRVASzTSGi3PKQxGbhDLw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'linux64-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-linux64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "BQMJQ_mNQRWvcw5mC4-vhw", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux64-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux64-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux64-devedition-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:mar_sha384" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-linux64-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "AP7zdWCzSLa8cAMKyFwwAQ" + }, + "ASpNxM9qRrKzSJEAFFJ1-Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a533c6abbd6798b31666" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a533c6abbd6798b31666" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ASpNxM9qRrKzSJEAFFJ1-Q" + }, + "AUGGhldISounk6XiUHv4Hg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=11" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-11", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "AUGGhldISounk6XiUHv4Hg" + }, + "AUf-cV0cSVCM0CZEtJzNHw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4cfd53999dde976a8ff9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4cfd53999dde976a8ff9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AUf-cV0cSVCM0CZEtJzNHw" + }, + "AUlQC5xvSkKo50gdiEj93A": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --gtest-suite=gtest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --gtest-suite=gtest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-gtest", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "AUlQC5xvSkKo50gdiEj93A" + }, + "AXXvnHmsTlaozIwA72GBHw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw", + "build-signing": "TgWVuej8SYKcpO3bck8zmw" + }, + "kind": "repackage", + "label": "repackage-linux64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "IIQOnLdoTueU9hBgwCPS7Q", + "LnQHtSIyQq-3fF5zNPWrQw", + "TgWVuej8SYKcpO3bck8zmw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'linux64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-linux64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/target.complete.mar": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/artifacts/target.complete.mar", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/repackage.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "JOB_SCRIPT": "taskcluster/scripts/builder/repackage.sh", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "download_input setup repackage", + "MOZHARNESS_CONFIG": "repackage/linux64_signed.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/repackage.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SIGNED_INPUT": "https://queue.taskcluster.net/v1/task/TgWVuej8SYKcpO3bck8zmw/artifacts/public/build/target.tar.bz2", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/host/bin/mar" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux64-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux64-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux64-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux64-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux64-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "docker-worker:cache:level-3-maple-build-linux64-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-linux64-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "AXXvnHmsTlaozIwA72GBHw" + }, + "AXzy9oQzSJO563xhnJ0u_Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C9", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.60eadf00895933d8ad3a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.60eadf00895933d8ad3a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-9", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AXzy9oQzSJO563xhnJ0u_Q" + }, + "AZlGVXR8T2O9it5n52YG8w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f5725cbc92d10572d1d5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f5725cbc92d10572d1d5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AZlGVXR8T2O9it5n52YG8w" + }, + "AaSgG8tiQJ2QkNUXr7uQ8Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6b06cbb3082acfce116b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6b06cbb3082acfce116b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AaSgG8tiQJ2QkNUXr7uQ8Q" + }, + "AbUjEQ2FQtq-7IjpDaVeMQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.89ab89f3b84141259912" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.89ab89f3b84141259912" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AbUjEQ2FQtq-7IjpDaVeMQ" + }, + "Abu-E_84QeOvXK22Kb3f1A": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9685c3b8ea7e45b80005" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9685c3b8ea7e45b80005" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Abu-E_84QeOvXK22Kb3f1A" + }, + "AcBmt0e2TsiGoLooeAK_og": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q", + "build-signing": "MTwumuYNTf6GeL2j3-2t-Q" + }, + "kind": "repackage", + "label": "repackage-win32-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q", + "MTwumuYNTf6GeL2j3-2t-Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32-devedition" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'win32-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-win32-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.installer.exe", + "path": "public/build/target.installer.exe", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.complete.mar", + "path": "public/build/target.complete.mar", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.stub-installer.exe", + "path": "public/build/target.stub-installer.exe", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\repackage.py --config repackage\\win32_signed.py --work-dir %cd:Z:=z:%\\build --download_input --setup --repackage" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "SIGNED_SETUP": "https://queue.taskcluster.net/v1/task/MTwumuYNTf6GeL2j3-2t-Q/artifacts/public/build/setup.exe", + "SIGNED_SETUP_STUB": "https://queue.taskcluster.net/v1/task/MTwumuYNTf6GeL2j3-2t-Q/artifacts/public/build/setup-stub.exe", + "SIGNED_ZIP": "https://queue.taskcluster.net/v1/task/MTwumuYNTf6GeL2j3-2t-Q/artifacts/public/build/target.zip", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/host/bin/mar.exe" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win32-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win32-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-devedition-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win32-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win32-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win32-devedition-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-win32-devedition-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "AcBmt0e2TsiGoLooeAK_og" + }, + "AcYvD0TcTTusGAnke-JPGw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.74db875fb000cddaab1d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.74db875fb000cddaab1d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AcYvD0TcTTusGAnke-JPGw" + }, + "AccqWzvORIikFC3ctv1-jw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "8", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f7e431ca8e4953f3efbb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f7e431ca8e4953f3efbb" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AccqWzvORIikFC3ctv1-jw" + }, + "AceEf0IITNeJQAoH4sr6vQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-media-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "AceEf0IITNeJQAoH4sr6vQ" + }, + "AcvD9imVSVq-Q0iA7unaxA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c02adda115d88bc57dee" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c02adda115d88bc57dee" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AcvD9imVSVq-Q0iA7unaxA" + }, + "AdBY9-1NRoSWgdRBQC-bvw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9766006cf1d4566b643c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9766006cf1d4566b643c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AdBY9-1NRoSWgdRBQC-bvw" + }, + "Ag8vYlJhTIeA0UpiiYLRqw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-marionette-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Ag8vYlJhTIeA0UpiiYLRqw" + }, + "AhJ-MLaBR3eLQm_2bsDUlw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "26", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-26", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 26, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R26", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-26", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=26", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8013ff1a2763da487b5e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8013ff1a2763da487b5e" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-26", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AhJ-MLaBR3eLQm_2bsDUlw" + }, + "AiQVWM0_Rz-wxel2tTKzbQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "AiQVWM0_Rz-wxel2tTKzbQ" + }, + "AkSVDmfiRRSeYP5-aPvYwA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.571331fd5d748c0f3787" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.571331fd5d748c0f3787" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AkSVDmfiRRSeYP5-aPvYwA" + }, + "Al8rL679T8ixDB6JYkyavQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw", + "build-signing": "TgWVuej8SYKcpO3bck8zmw", + "repackage": "AXXvnHmsTlaozIwA72GBHw" + }, + "kind": "repackage-signing", + "label": "repackage-signing-linux64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "AXXvnHmsTlaozIwA72GBHw", + "IIQOnLdoTueU9hBgwCPS7Q", + "LnQHtSIyQq-3fF5zNPWrQw", + "TgWVuej8SYKcpO3bck8zmw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'linux64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-linux64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "AXXvnHmsTlaozIwA72GBHw", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux64-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux64-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux64-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:mar_sha384" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-linux64-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "Al8rL679T8ixDB6JYkyavQ" + }, + "AmDDKj6nTeaTUdhnTk0B7w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f88eaa27f8a178f3561f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f88eaa27f8a178f3561f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "AmDDKj6nTeaTUdhnTk0B7w" + }, + "Anb2kHi-SnKdkU4_s9z-FA": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Anb2kHi-SnKdkU4_s9z-FA" + }, + "Ar67kDJMRGqoyVVlRa1J6g": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --gtest-suite=gtest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --gtest-suite=gtest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-gtest", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Ar67kDJMRGqoyVVlRa1J6g" + }, + "AuoiGV54S9WInEpgr2alfQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R6", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dae24082911f3bd81f24" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dae24082911f3bd81f24" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AuoiGV54S9WInEpgr2alfQ" + }, + "AwG5QYFxRO23j7vb0yHlig": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "AwG5QYFxRO23j7vb0yHlig" + }, + "AxbO5mXzQhm6QxxFjqWCPQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "47", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-47", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 47, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "47", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-47", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=47", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3b30f6e80d6039a7975f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3b30f6e80d6039a7975f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-47", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AxbO5mXzQhm6QxxFjqWCPQ" + }, + "AyfQBg3GQFOPs3Uk2dt3JA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "AyfQBg3GQFOPs3Uk2dt3JA" + }, + "AyndnGpJQ9yalEOp-Z7DTQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R5", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.13d9577485a03a560548" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.13d9577485a03a560548" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "AyndnGpJQ9yalEOp-Z7DTQ" + }, + "AyxewVjSRXClIfCcqZ0Kqg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "awsy", + "unittest_suite": "awsy", + "unittest_try_name": "awsy-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-awsy-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "awsy", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s", + "groupSymbol": "tc-SY-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "sy", + "tier": 1 + } + }, + "metadata": { + "description": "Are we slim yet ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-awsy-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/awsy_script.py", + "--cfg", + "mozharness/configs/awsy/macosx_config.py", + "--e10s", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f2d0a1434b803ede9e2d" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f2d0a1434b803ede9e2d" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-awsy-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "AyxewVjSRXClIfCcqZ0Kqg" + }, + "B-7S_IxzTM-vXlQC_fnTkA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fb881c283d43992b751a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fb881c283d43992b751a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "B-7S_IxzTM-vXlQC_fnTkA" + }, + "B1czA9YMQJ6Wxrxlmj1b8w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.00427f44ad035788d1cb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.00427f44ad035788d1cb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "B1czA9YMQJ6Wxrxlmj1b8w" + }, + "B5O-fXk8RfulaIXEgo5pMw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.06ef5eef73ae87e4d734" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.06ef5eef73ae87e4d734" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "B5O-fXk8RfulaIXEgo5pMw" + }, + "B7cDzhu7QCCYqvI6BttuLA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "3", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.df46d1872b96294fb520" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.df46d1872b96294fb520" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "B7cDzhu7QCCYqvI6BttuLA" + }, + "B9G32w5kR-yV-O_v7Ota1w": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.157a274a90f738983403" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.157a274a90f738983403" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "B9G32w5kR-yV-O_v7Ota1w" + }, + "BA875a5eSOSaGI6rkhJqvw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.905cf3e85e27e1495d0d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.905cf3e85e27e1495d0d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BA875a5eSOSaGI6rkhJqvw" + }, + "BARMiXIiQfiiJv4PBysgeg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.20c512233a1712ef6a11" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.20c512233a1712ef6a11" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BARMiXIiQfiiJv4PBysgeg" + }, + "BBQQnwzZRDqrPAwn_Blr0w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ddecb772cf1b6522b775" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ddecb772cf1b6522b775" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BBQQnwzZRDqrPAwn_Blr0w" + }, + "BCaPHgF3QqqbPlM-C2aVCA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "6", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b78f28f8aa826a0e6b70" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b78f28f8aa826a0e6b70" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BCaPHgF3QqqbPlM-C2aVCA" + }, + "BE4063p6R8usyt-6PCp3Eg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "30", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-30", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 30, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R30", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-30", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=30", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fb5839a251bb49ab3f3a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fb5839a251bb49ab3f3a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-30", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BE4063p6R8usyt-6PCp3Eg" + }, + "BERHD_MnTQy2Gr2wWQ8OyQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ab20ae3df36237387b25" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ab20ae3df36237387b25" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BERHD_MnTQy2Gr2wWQ8OyQ" + }, + "BGHN-hhdSLaVYgBODDhQqA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d5adb3e775bb6863fc88" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d5adb3e775bb6863fc88" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BGHN-hhdSLaVYgBODDhQqA" + }, + "BIhBls8qTby_66fJ4gQxzg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "BIhBls8qTby_66fJ4gQxzg" + }, + "BJyeTbUUQFCo2WG0-405Eg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d7e6f1f22c38f3b5d1d9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d7e6f1f22c38f3b5d1d9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BJyeTbUUQFCo2WG0-405Eg" + }, + "BKYmpEqqTNSwb5jh09ekBw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "BKYmpEqqTNSwb5jh09ekBw" + }, + "BLCX89wSRSePPsd2HdEnmA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5b65ba43658380204da4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5b65ba43658380204da4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BLCX89wSRSePPsd2HdEnmA" + }, + "BNWq_t02Rx24PLoFeVpnbA": { + "attributes": { + "always_target": false, + "build_platform": "win32-st-an", + "build_type": "debug", + "kind": "static-analysis", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "static-analysis", + "label": "static-analysis-win32-st-an/debug", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JK-b5uMvSgapkaE456m_oQ", + "b7p9n_sbQx6q_9bQpR1BTQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "S", + "tier": 1 + } + }, + "metadata": { + "description": "Win32 Static Analysis Debug (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "static-analysis-win32-st-an/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/static-analysis" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win32.py --config builds\\taskcluster_sub_win32\\clang_debug.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@JK-b5uMvSgapkaE456m_oQ public/build/rustc.tar.bz2@b7p9n_sbQx6q_9bQpR1BTQ public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest" + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win32-st-an-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win32-st-an-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.win32-st-an-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-st-an-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "static-analysis", + "label": "static-analysis-win32-st-an/debug", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "BNWq_t02Rx24PLoFeVpnbA" + }, + "BQMJQ_mNQRWvcw5mC4-vhw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng", + "build-signing": "QIRVASzTSGi3PKQxGbhDLw" + }, + "kind": "repackage", + "label": "repackage-linux64-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "IIQOnLdoTueU9hBgwCPS7Q", + "P4fV6_sIRbaB1wx8qiJ0ng", + "QIRVASzTSGi3PKQxGbhDLw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'linux64-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-linux64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/target.complete.mar": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/artifacts/target.complete.mar", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-devedition-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/repackage.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "JOB_SCRIPT": "taskcluster/scripts/builder/repackage.sh", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "download_input setup repackage", + "MOZHARNESS_CONFIG": "repackage/linux64_signed.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/repackage.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SIGNED_INPUT": "https://queue.taskcluster.net/v1/task/QIRVASzTSGi3PKQxGbhDLw/artifacts/public/build/target.tar.bz2", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/host/bin/mar" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux64-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux64-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-devedition-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux64-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux64-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux64-devedition-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "docker-worker:cache:level-3-maple-build-linux64-devedition-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-linux64-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "BQMJQ_mNQRWvcw5mC4-vhw" + }, + "BQVMOCkyQPGXvV-FYXTl8A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e6f6fd4c63afe65aaef1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e6f6fd4c63afe65aaef1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BQVMOCkyQPGXvV-FYXTl8A" + }, + "BQl9ggk7SkSl0gMGaa3zlw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ba0c9ec5451f5f8438b8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ba0c9ec5451f5f8438b8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BQl9ggk7SkSl0gMGaa3zlw" + }, + "BRaBneIrQ4yz-s0hOVCSfA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "BRaBneIrQ4yz-s0hOVCSfA" + }, + "BVrVc3aoR9G9I_rQgvdU7Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2a432ddf3708d517d202" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2a432ddf3708d517d202" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BVrVc3aoR9G9I_rQgvdU7Q" + }, + "BW0M1N9gS068Uerbr3y5pw": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "geckoview", + "unittest_suite": "geckoview", + "unittest_try_name": "geckoview" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-geckoview", + "optimization": { + "skip-unless-schedules-or-seta": [ + "geckoview", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "geckoview", + "name": "geckoview" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "gv", + "tier": 1 + } + }, + "metadata": { + "description": "Geckoview run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-geckoview", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/geckoview_example.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=geckoview", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/geckoview_example.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b1cfb6b7d390e8ceaa8b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b1cfb6b7d390e8ceaa8b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-geckoview", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BW0M1N9gS068Uerbr3y5pw" + }, + "BW3ynzIJSWG-9osEPUujCQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "BW3ynzIJSWG-9osEPUujCQ" + }, + "BWaW4JJpRCawtb56g16ffQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9c14337037f1aa30fce0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9c14337037f1aa30fce0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BWaW4JJpRCawtb56g16ffQ" + }, + "BWrA91DETUiY2Smrp9l2nQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn5", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6a884cd7eeab230001b5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6a884cd7eeab230001b5" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BWrA91DETUiY2Smrp9l2nQ" + }, + "BXPeEFrrTGKo8soauG-Ikg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a38ebeb25c078cee94ee" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a38ebeb25c078cee94ee" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BXPeEFrrTGKo8soauG-Ikg" + }, + "BXQ3WcXUTD6tr43NpkGBzg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-gpu", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-gpu", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-plain-gpu", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c2a46796f5346ee6f331" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c2a46796f5346ee6f331" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-gpu", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BXQ3WcXUTD6tr43NpkGBzg" + }, + "BZEqQtQpSH6RMqmMnRy_Dg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9426380a296d6ca377cd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9426380a296d6ca377cd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BZEqQtQpSH6RMqmMnRy_Dg" + }, + "B__BPSUKSAuPO1NZbu3LpQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "upload-symbols", + "label": "build-win64-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win64-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "aw4Sk4GfRXiDuhlMv34ksw", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-win64-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "B__BPSUKSAuPO1NZbu3LpQ" + }, + "BcDajLbvTWuLhPLlvWjGqw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "BcDajLbvTWuLhPLlvWjGqw" + }, + "BdefWxAISC2fTvCtyLqJNg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.765ca989d2e92a8e635a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.765ca989d2e92a8e635a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BdefWxAISC2fTvCtyLqJNg" + }, + "Bdt-hys1QpOYpNp5DMKibQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win64-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-win64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win64-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Bdt-hys1QpOYpNp5DMKibQ" + }, + "BgdCu3qPS82JRNzdGQb6Yw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.52f3da24916e3f2b5bf3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.52f3da24916e3f2b5bf3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BgdCu3qPS82JRNzdGQb6Yw" + }, + "BlHS3F4hSZuxcRkb4MyrKQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.73f11c53049f68431e42" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.73f11c53049f68431e42" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BlHS3F4hSZuxcRkb4MyrKQ" + }, + "Bn0ZAE4FT5aysUwac-fHjg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dd13a4f6d53ca5d1c67a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dd13a4f6d53ca5d1c67a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Bn0ZAE4FT5aysUwac-fHjg" + }, + "BoUp8D-JTB-MsVgBuXbZFg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "19", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-19", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 19, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R19", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-19", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=19", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.93ccce57ff80ca090046" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.93ccce57ff80ca090046" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-19", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BoUp8D-JTB-MsVgBuXbZFg" + }, + "Bq7RQFEZSsKgFfsu_sbD7g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.04a3a87ec6051e1d294f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.04a3a87ec6051e1d294f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Bq7RQFEZSsKgFfsu_sbD7g" + }, + "BqN1MZjqScuIADxXpH8dRw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.625f6f27950e18a070d8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.625f6f27950e18a070d8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BqN1MZjqScuIADxXpH8dRw" + }, + "BqiB_rx3T6amx2BvpBCg1A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.42de2b91897d991e1da3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.42de2b91897d991e1da3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BqiB_rx3T6amx2BvpBCg1A" + }, + "Bqn9eHRxSQevq5uk8I4rvQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Bqn9eHRxSQevq5uk8I4rvQ" + }, + "BtCQcevYTMuSfnp-PnjNXA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4d86f489cab2ef6d1d4c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4d86f489cab2ef6d1d4c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BtCQcevYTMuSfnp-PnjNXA" + }, + "BumlLfIqTmWZsV-o8VwJOw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "rc4", + "tier": 2 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-robocop-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3c81715253db9592259c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3c81715253db9592259c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BumlLfIqTmWZsV-o8VwJOw" + }, + "BwHJwFCASbyNyb6Ffa-SiQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=11" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-11", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "BwHJwFCASbyNyb6Ffa-SiQ" + }, + "BxOQkqGBQaWWxNaKIMuNHA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.eac8ea67333fccca966a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.eac8ea67333fccca966a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BxOQkqGBQaWWxNaKIMuNHA" + }, + "BxraOCfoRkWE9cq8Qt11Sg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.861502518f9a06e1877b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.861502518f9a06e1877b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BxraOCfoRkWE9cq8Qt11Sg" + }, + "BypHkCdSTPimrap7r7UeZA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.82206034d04b6be5d313" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.82206034d04b6be5d313" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "BypHkCdSTPimrap7r7UeZA" + }, + "Bz-MNrRKSy2feQL9-6RcgQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.66a2d26bcc0dec31aa5f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.66a2d26bcc0dec31aa5f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Bz-MNrRKSy2feQL9-6RcgQ" + }, + "BzoJoBwcRQ28viF8UzbUmA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f109b7c320e0b7174dbb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f109b7c320e0b7174dbb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "BzoJoBwcRQ28viF8UzbUmA" + }, + "C0ilpCn_SYaM8QWYf_oCqA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.952ef36196c4f27a0c75" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.952ef36196c4f27a0c75" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "C0ilpCn_SYaM8QWYf_oCqA" + }, + "C27H6-FSTOOVTH305_O4Vg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9dcd59e98e089c6516b7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9dcd59e98e089c6516b7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "C27H6-FSTOOVTH305_O4Vg" + }, + "C44KQlEwToKaqJ7nY3xh8A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1a7a49d15d5089bb522c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1a7a49d15d5089bb522c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "C44KQlEwToKaqJ7nY3xh8A" + }, + "C7JjBo49R0iTuUEOnXcESA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8ed2cda64ae4b1f3294a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8ed2cda64ae4b1f3294a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "C7JjBo49R0iTuUEOnXcESA" + }, + "C7VlCoFjTJOgQBRPyf1zHg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4d4bce23120adf5ede9a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4d4bce23120adf5ede9a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "C7VlCoFjTJOgQBRPyf1zHg" + }, + "C8R2CTIDRMSrav2Nfpwc4g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests-wdspec", + "unittest_suite": "web-platform-tests-wdspec", + "unittest_try_name": "web-platform-tests-wdspec-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-wdspec-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-wdspec", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Wd", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-wdspec-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c9bfaf715bcc9fdba6d5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c9bfaf715bcc9fdba6d5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-wdspec-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "C8R2CTIDRMSrav2Nfpwc4g" + }, + "CA4RccKyTL6hbx25uwt6Gg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fc3329d3e4a4b3080e97" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fc3329d3e4a4b3080e97" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CA4RccKyTL6hbx25uwt6Gg" + }, + "CBimx5sUQy2yKOUKjDAFIg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "CBimx5sUQy2yKOUKjDAFIg" + }, + "CCP7TykPTDGYdSsOf0oYVA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b87f180d978e1bd5986a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b87f180d978e1bd5986a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CCP7TykPTDGYdSsOf0oYVA" + }, + "CCbgj0cgT22BP_evJRlByw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e29eb98add1eb91d688b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e29eb98add1eb91d688b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CCbgj0cgT22BP_evJRlByw" + }, + "CCuSlVCNREW6eSUmKLxvDg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.21f94b33ee345d3cd9c5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.21f94b33ee345d3cd9c5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CCuSlVCNREW6eSUmKLxvDg" + }, + "CEoluwa3QtmgHmKXSON3sA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6f98eb9340d4b87020a6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6f98eb9340d4b87020a6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CEoluwa3QtmgHmKXSON3sA" + }, + "CFMaULRiQf-NsSZt_omiZQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ab24bc45dca9600e59fc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ab24bc45dca9600e59fc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CFMaULRiQf-NsSZt_omiZQ" + }, + "CHywx2SKRrqU-Ik5B-2RvQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "20", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-20", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 20, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R20", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-20", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=20", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3d6fa14350fe9754df1b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3d6fa14350fe9754df1b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-20", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CHywx2SKRrqU-Ik5B-2RvQ" + }, + "CIgrFplLTZe_FoSgQfbE8g": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --headless --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-marionette-headless-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "CIgrFplLTZe_FoSgQfbE8g" + }, + "CImBlD2DRaOopPfp9XsJOg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=9" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-9", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "CImBlD2DRaOopPfp9XsJOg" + }, + "CJ9nELMBS1KpwUxT8pGRMg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.aaafdfee30cad9e66f76" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aaafdfee30cad9e66f76" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CJ9nELMBS1KpwUxT8pGRMg" + }, + "CJjv1sC_RdWUVNGSvIe6Hw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "1", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d26e152f113468c9f53b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d26e152f113468c9f53b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CJjv1sC_RdWUVNGSvIe6Hw" + }, + "CLzJDXw9RJKViVxfwcJuLA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "34", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-34", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 34, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R34", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-34", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=34", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.365e971a862efa2a7478" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.365e971a862efa2a7478" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-34", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CLzJDXw9RJKViVxfwcJuLA" + }, + "CM_71PkbRiKEPpfHMeU_kA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "build-signing", + "label": "build-signing-linux-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'linux-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-linux-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "gpg", + "widevine" + ], + "paths": [ + "public/build/target.tar.bz2" + ], + "taskId": "ERGOeyR0ReW_HCzxf4t_eQ", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.firefox.linux-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.firefox.linux-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.firefox-l10n.linux-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.firefox-l10n.linux-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:gpg", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-linux-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "CM_71PkbRiKEPpfHMeU_kA" + }, + "CO3_nNGXRFWlNwXmqgYfww": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "CO3_nNGXRFWlNwXmqgYfww" + }, + "CS90le7aT-exvh6rSuTNTg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.04c71379a58e8c7ab3ac" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.04c71379a58e8c7ab3ac" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CS90le7aT-exvh6rSuTNTg" + }, + "CVjw2geGQ_GmrKD90HPSaA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.be307aaed4e8ada97067" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.be307aaed4e8ada97067" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CVjw2geGQ_GmrKD90HPSaA" + }, + "CYW3NYYHQIKlQMIb1H-iMw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.18cf63275137967b3bbc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.18cf63275137967b3bbc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CYW3NYYHQIKlQMIb1H-iMw" + }, + "CZ6nqxytTMuZ-Dr7ZhZAjQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "38", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-38", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 38, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R38", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-38", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=38", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.86560603bf03305cea46" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.86560603bf03305cea46" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-38", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CZ6nqxytTMuZ-Dr7ZhZAjQ" + }, + "CZugAHjCSR6poHgAb4UyDg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-8", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "CZugAHjCSR6poHgAb4UyDg" + }, + "CaUdfvTpQ-i5YYttYxEt1A": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-5", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "CaUdfvTpQ-i5YYttYxEt1A" + }, + "CaZfIn8LQUG8J6a3Fio4-Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9629d2ea9f0d04dd151b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9629d2ea9f0d04dd151b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CaZfIn8LQUG8J6a3Fio4-Q" + }, + "CahT-c4GS-Sxbl3O4FxvQw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "kind": "build-signing", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "signed": true + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "build-signing", + "label": "build-signing-win32/debug", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "Bs", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'win32/debug' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-win32/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/setup.exe" + ], + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw", + "taskType": "build" + }, + { + "formats": [ + "sha2signcode", + "widevine" + ], + "paths": [ + "public/build/target.zip" + ], + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-win32/debug" + }, + "workerType": "depsigning" + }, + "task_id": "CahT-c4GS-Sxbl3O4FxvQw" + }, + "CajVnJgYQG6mSKnURHDQ7g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9712d8620aef1e423374" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9712d8620aef1e423374" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CajVnJgYQG6mSKnURHDQ7g" + }, + "CcKAEIl2RUOR0qaO7eaZdQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ef0abb91f9db4cc1a7fa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ef0abb91f9db4cc1a7fa" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CcKAEIl2RUOR0qaO7eaZdQ" + }, + "CdPzyPpNTVetL3cwMGVg2w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d1884c08546141312870" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d1884c08546141312870" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CdPzyPpNTVetL3cwMGVg2w" + }, + "Cf1vssakQ6yiGR_Es00z-g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1deeeb96ae9310f9003b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1deeeb96ae9310f9003b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Cf1vssakQ6yiGR_Es00z-g" + }, + "CjQtrILdSWu-ygGI6Ks7qw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C1", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a89c12d8d7e0d603222e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a89c12d8d7e0d603222e" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CjQtrILdSWu-ygGI6Ks7qw" + }, + "CkIGzEDBSrieKUg9x6DkGg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=9" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-9", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "CkIGzEDBSrieKUg9x6DkGg" + }, + "CkfI3ygnQDmbgUSfijBRZg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6d988e70768fc684f2f6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6d988e70768fc684f2f6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CkfI3ygnQDmbgUSfijBRZg" + }, + "ComvKm0qTsCmOp1u6VV3Uw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bdfffc1636006c8bd391" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bdfffc1636006c8bd391" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ComvKm0qTsCmOp1u6VV3Uw" + }, + "Cpm0Q2zGSICB238xqb2hhw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.81b58918ef56746d63d8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.81b58918ef56746d63d8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Cpm0Q2zGSICB238xqb2hhw" + }, + "CtVzanSUTd2e2GxYYA072A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5e5822b7527ad2637fff" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5e5822b7527ad2637fff" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "CtVzanSUTd2e2GxYYA072A" + }, + "Cuw8Gni7Shy76nRCvgSWIA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "build-signing", + "label": "build-signing-win32-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'win32-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-win32-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/setup.exe", + "public/build/setup-stub.exe" + ], + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ", + "taskType": "build" + }, + { + "formats": [ + "sha2signcode", + "widevine" + ], + "paths": [ + "public/build/target.zip" + ], + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.firefox.win32-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.firefox.win32-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win32-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.firefox-l10n.win32-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.firefox-l10n.win32-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-win32-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "Cuw8Gni7Shy76nRCvgSWIA" + }, + "CvNsImdcQTSRGXvNOkgByg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "build-signing", + "label": "build-signing-win64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'win64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-win64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/setup.exe" + ], + "taskId": "aw4Sk4GfRXiDuhlMv34ksw", + "taskType": "build" + }, + { + "formats": [ + "sha2signcode", + "widevine" + ], + "paths": [ + "public/build/target.zip" + ], + "taskId": "aw4Sk4GfRXiDuhlMv34ksw", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.firefox.win64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.firefox.win64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.firefox-l10n.win64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.firefox-l10n.win64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-win64-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "CvNsImdcQTSRGXvNOkgByg" + }, + "CwfrakI-T5mXD5MWfkT7Vw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.becf0073271bbeb9579a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.becf0073271bbeb9579a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CwfrakI-T5mXD5MWfkT7Vw" + }, + "CzMTyQLwTnmP2eW5Mk3JOw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f8126fda997b2a4e07e0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f8126fda997b2a4e07e0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "CzMTyQLwTnmP2eW5Mk3JOw" + }, + "D-03E6lpSFaKbCwUcgjOkA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3ea85652666ba5b0fbdd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3ea85652666ba5b0fbdd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "D-03E6lpSFaKbCwUcgjOkA" + }, + "D0MDAFTsS7avnZaj2Zlxmw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9179104ce04882bc4576" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9179104ce04882bc4576" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "D0MDAFTsS7avnZaj2Zlxmw" + }, + "D13ehvAuSC-YsTC6jWui_g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e1b34bfc12c97535273b" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e1b34bfc12c97535273b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-5", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "D13ehvAuSC-YsTC6jWui_g" + }, + "D1JsJyUQTIGQOS5wZjSBxg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9c83d05e3a5be5cf97ae" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9c83d05e3a5be5cf97ae" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "D1JsJyUQTIGQOS5wZjSBxg" + }, + "D1wQ8_quRtOZkz5LxrHtvA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--gtest-suite=gtest", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.44eae81ffc541970c9a9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.44eae81ffc541970c9a9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-gtest", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "D1wQ8_quRtOZkz5LxrHtvA" + }, + "D3SDTcGkT_qzNY2D7tJRdg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "10", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3f4dbe87e0bd6b62e637" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3f4dbe87e0bd6b62e637" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "D3SDTcGkT_qzNY2D7tJRdg" + }, + "D677Ic6qS8GuFDjRrPbz2Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "D677Ic6qS8GuFDjRrPbz2Q" + }, + "D6MJZd9GTRKg5_NpvoW-vQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.453ce7f7d9c15dea81a8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.453ce7f7d9c15dea81a8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "D6MJZd9GTRKg5_NpvoW-vQ" + }, + "D6YUCdfXSVqdqHuk_YrRsw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a3c1c502d3643222dc49" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a3c1c502d3643222dc49" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "D6YUCdfXSVqdqHuk_YrRsw" + }, + "D9qcw42QQu2DdgP7Ga-sQA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests-wdspec", + "unittest_suite": "web-platform-tests-wdspec", + "unittest_try_name": "web-platform-tests-wdspec-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-wdspec-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-wdspec", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Wd", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-wdspec-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6a5c5434d461578130a1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6a5c5434d461578130a1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-wdspec-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "D9qcw42QQu2DdgP7Ga-sQA" + }, + "DAOk_BYnSSaaoDYsOwSprg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R10", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5a755a9c5df098e54358" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5a755a9c5df098e54358" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-10", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DAOk_BYnSSaaoDYsOwSprg" + }, + "DEfhx1aVSq-cQoGcAYUOIw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d416faea44cdd58f70bb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d416faea44cdd58f70bb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DEfhx1aVSq-cQoGcAYUOIw" + }, + "DGD7XC8dSRmtqALgj3avhw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "rc1", + "tier": 2 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-robocop-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7b2d629e891a83f7c194" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7b2d629e891a83f7c194" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DGD7XC8dSRmtqALgj3avhw" + }, + "DJdv7qF5RTyTHz9toU767g": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "DJdv7qF5RTyTHz9toU767g" + }, + "DLZ_qDuvTcGwgX_DYmKzDA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "1", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.49b159e88977a5afc2af" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.49b159e88977a5afc2af" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DLZ_qDuvTcGwgX_DYmKzDA" + }, + "DN0KwgvsTYOMpQwQI8mMXw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.115a00d65122ce82e2e8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.115a00d65122ce82e2e8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DN0KwgvsTYOMpQwQI8mMXw" + }, + "DN3JJIA4RPiw3s4qulJdfA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=10" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-10", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "DN3JJIA4RPiw3s4qulJdfA" + }, + "DOaajS_lSieoWiASfy9fKg": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.de6e1f6385ea93311bf3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.de6e1f6385ea93311bf3" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DOaajS_lSieoWiASfy9fKg" + }, + "DP1nfuQDRm--MeDS87tHpg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.abcac1669835e1190b3b" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.abcac1669835e1190b3b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "DP1nfuQDRm--MeDS87tHpg" + }, + "DShtyZUpQmWPeWQ20xAoEQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "DShtyZUpQmWPeWQ20xAoEQ" + }, + "DT6ewYBtT9SRfqyZRk_cOA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "DT6ewYBtT9SRfqyZRk_cOA" + }, + "DT7OmbPcQMGWNx4eW5KVEw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "DT7OmbPcQMGWNx4eW5KVEw" + }, + "DT_N_c2tTmWqHhCKDt0E2g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R9", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d2d101cb3f33cbe0813c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d2d101cb3f33cbe0813c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-9", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DT_N_c2tTmWqHhCKDt0E2g" + }, + "DT_duaYKQ3OBRIJ1E0b3fQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C5", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.566862274af24b1e2f6b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.566862274af24b1e2f6b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DT_duaYKQ3OBRIJ1E0b3fQ" + }, + "DVwL1pC9TPKtP5VHLPVvgQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.774183a46cf8206e12a0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.774183a46cf8206e12a0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DVwL1pC9TPKtP5VHLPVvgQ" + }, + "DXsCretkQ0Ww0Ro4SxdF6A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1d46e43a5bed9a5c699b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1d46e43a5bed9a5c699b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DXsCretkQ0Ww0Ro4SxdF6A" + }, + "DYkJCZt6SgSOmJuN6cwlyg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.83ca08bd31fcdb62e725" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.83ca08bd31fcdb62e725" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DYkJCZt6SgSOmJuN6cwlyg" + }, + "D_9EKo6zTieV87ESRVKSYg": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-android-x86/opt", + "optimization": { + "skip-unless-schedules": [ + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "BW8vSUH1SbOPEd52XtjWNQ", + "F3r_JetlQ7azJsxzWUj71Q", + "I7Ps06L_RXiYnvXmdyzgyw", + "JDK3DN9yRmGSrRjNSqyMCw", + "UiMK4BDOTRyD-ct_25PQJQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "ZvnwVi2KRxm9HH0FVlAXag" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "UiMK4BDOTRyD-ct_25PQJQ" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Android 4.2 x86 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-android-x86/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/android/R": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "type": "directory" + }, + "public/android/maven": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "type": "directory" + }, + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-android-x86-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "x86", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py platform_supports_post_upload_to_latest.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@F3r_JetlQ7azJsxzWUj71Q project/gecko/android-sdk/android-sdk-linux.tar.xz@JDK3DN9yRmGSrRjNSqyMCw public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/rustc.tar.xz@ZvnwVi2KRxm9HH0FVlAXag public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ public/build/proguard-jar.tar.xz@BW8vSUH1SbOPEd52XtjWNQ", + "SCCACHE_IDLE_TIMEOUT": "1500", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android-x86/releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "UiMK4BDOTRyD-ct_25PQJQ", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.mobile.android-x86-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.mobile.android-x86-opt", + "index.gecko.v2.maple.pushlog-id.343.mobile.android-x86-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.mobile.android-x86-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "queue:get-artifact:project/gecko/android-sdk/*", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-android-x86-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-android-x86/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-android" + }, + "task_id": "D_9EKo6zTieV87ESRVKSYg" + }, + "Da4ZHrZnTACayaJUgnlZiw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bb281d255a5fcce3fe9b" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bb281d255a5fcce3fe9b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Da4ZHrZnTACayaJUgnlZiw" + }, + "DbF2FdBARFac0-lOZE6d7g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--headless", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.30400203c429f1ae3817" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.30400203c429f1ae3817" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-marionette-headless-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DbF2FdBARFac0-lOZE6d7g" + }, + "DbOBCTgCRKqgXWQsN0d6Vg": { + "attributes": { + "always_target": false, + "build_platform": "win64-st-an", + "build_type": "opt", + "kind": "static-analysis", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "S", + "tier": 1 + } + }, + "metadata": { + "description": "Win64 Static Analysis Opt (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "static-analysis-win64-st-an/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/static-analysis" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win64.py --config builds\\taskcluster_sub_win64\\clang.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest" + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win64-st-an-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win64-st-an-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.win64-st-an-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-st-an-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "DbOBCTgCRKqgXWQsN0d6Vg" + }, + "DbXAGXG4QeKX1U9HTr3-RQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9cee4a5720f3c4197ab8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9cee4a5720f3c4197ab8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DbXAGXG4QeKX1U9HTr3-RQ" + }, + "DcdSPgn3Qze8heO5blQ_8g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9463c2735887e4d50ddb" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9463c2735887e4d50ddb" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-5", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "DcdSPgn3Qze8heO5blQ_8g" + }, + "DdqJ4wiiTUeHwtuVXKHsdw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "DdqJ4wiiTUeHwtuVXKHsdw" + }, + "DeM-r1AKTFaNWmIsTznx-g": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "DeM-r1AKTFaNWmIsTznx-g" + }, + "De_GvelbRdq3WZMEX0eLXw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "De_GvelbRdq3WZMEX0eLXw" + }, + "Df0jq4jTRw-1yBQqIhFX3w": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d39ef271a933fc44808c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d39ef271a933fc44808c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Df0jq4jTRw-1yBQqIhFX3w" + }, + "DiXiF5afQ7msGWRQEiGwPg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "DiXiF5afQ7msGWRQEiGwPg" + }, + "DjxUUjrXQj-bxtTj-6f0SA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4d391dcb503a24c1d8dc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4d391dcb503a24c1d8dc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DjxUUjrXQj-bxtTj-6f0SA" + }, + "DlDu7YSbQu-c2C30sggCLg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3e0b0681426b523ecff5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3e0b0681426b523ecff5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DlDu7YSbQu-c2C30sggCLg" + }, + "Dl_Dy_iNQ_iImir9dqZxgg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3fcbb6d9fcfafbf1b848" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3fcbb6d9fcfafbf1b848" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Dl_Dy_iNQ_iImir9dqZxgg" + }, + "DmddXz_CTlecJkWIjdSMnQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-1", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "DmddXz_CTlecJkWIjdSMnQ" + }, + "Dn2ntybsRZm-Oetc0zZJYw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Dn2ntybsRZm-Oetc0zZJYw" + }, + "DppyIQkMR4e1X5fChElfZw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "5", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0353b0b14dc9b105dd73" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0353b0b14dc9b105dd73" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DppyIQkMR4e1X5fChElfZw" + }, + "DqcTimfoRjGIaV74vklVCA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.feca2b4ea0da1f1ab15b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.feca2b4ea0da1f1ab15b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DqcTimfoRjGIaV74vklVCA" + }, + "DrfYAL19SQiyCA_BM_0Fig": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "DrfYAL19SQiyCA_BM_0Fig" + }, + "DssovY7eQveenNq_yQruyw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c96eac5299f52043ef86" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c96eac5299f52043ef86" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "DssovY7eQveenNq_yQruyw" + }, + "DzCIvGLaS6uro_GXuRkRjQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.24ab8ecbf5435b45b369" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.24ab8ecbf5435b45b369" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DzCIvGLaS6uro_GXuRkRjQ" + }, + "DzVzGE1qQSC5bt1jWUzbDw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.67f3c2b78487ced75e02" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.67f3c2b78487ced75e02" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "DzVzGE1qQSC5bt1jWUzbDw" + }, + "E-OkR9o5R-2LdB6INrz_ZA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5638e64fc3c880ba9066" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5638e64fc3c880ba9066" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "E-OkR9o5R-2LdB6INrz_ZA" + }, + "E-wOX9bKQ3-jsvY5_jmY7Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8148c1347f1e7dc8b6d4" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8148c1347f1e7dc8b6d4" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "E-wOX9bKQ3-jsvY5_jmY7Q" + }, + "E0ocngyURPW55FWKKaCZpg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X9", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4e682b5c23cf56e34c03" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4e682b5c23cf56e34c03" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "E0ocngyURPW55FWKKaCZpg" + }, + "E1h0zE5uQnO7rcYFN1zAVQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1f5b4ef39e3e96451f53" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1f5b4ef39e3e96451f53" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "E1h0zE5uQnO7rcYFN1zAVQ" + }, + "E3PIUfdVRJe5xK4Ue8wWAQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=reftest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-reftests-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "E3PIUfdVRJe5xK4Ue8wWAQ" + }, + "E3zwTyi9SR6rv7yjaUWaeQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "mda2", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e4080f75af93958be221" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e4080f75af93958be221" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "E3zwTyi9SR6rv7yjaUWaeQ" + }, + "E6QOA93zQnGDAnmT2TdWng": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "21", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-21", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 21, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "21", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-21", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=21", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e40a2b7ad29bba70dc1b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e40a2b7ad29bba70dc1b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-21", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "E6QOA93zQnGDAnmT2TdWng" + }, + "E7e8hrivSLKxeANrc8DtWA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b64a1a7f025956110f41" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b64a1a7f025956110f41" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "E7e8hrivSLKxeANrc8DtWA" + }, + "E7eLdTeATMOLzl2czk7phg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux-devedition-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-linux-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "E7eLdTeATMOLzl2czk7phg" + }, + "E7r0UnxwT3WE_5VF-SRc9g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.91c77ce1d982ddb6f0b5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.91c77ce1d982ddb6f0b5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "E7r0UnxwT3WE_5VF-SRc9g" + }, + "E9eH-v5DSvKEMBgPm30uKA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fd472b15e25d19a2343c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fd472b15e25d19a2343c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "E9eH-v5DSvKEMBgPm30uKA" + }, + "EBhzqG7aTvSkC3W4lU6y7A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e080f719df73f64903f5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e080f719df73f64903f5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EBhzqG7aTvSkC3W4lU6y7A" + }, + "EByT0PItSiiO2zyTdQAxdg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.60ef765174e49ad5b4f3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.60ef765174e49ad5b4f3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EByT0PItSiiO2zyTdQAxdg" + }, + "ECr_Xun4Q2Gm8_719rnA8Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.74b8cbd9da9553b9d2c5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.74b8cbd9da9553b9d2c5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ECr_Xun4Q2Gm8_719rnA8Q" + }, + "EE_qZEigSZSGY6geTJwV5w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c95a4a21db0a1bdefc79" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c95a4a21db0a1bdefc79" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EE_qZEigSZSGY6geTJwV5w" + }, + "EH6N3uCTQHOKKGLkGlE7UQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "rc1", + "tier": 1 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-robocop-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.243045e603afbe622716" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.243045e603afbe622716" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "EH6N3uCTQHOKKGLkGlE7UQ" + }, + "EHa5RadGTwSPh-rLBdNyPQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c90c14aeb77fa3cc5518" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c90c14aeb77fa3cc5518" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EHa5RadGTwSPh-rLBdNyPQ" + }, + "EISar4pwRiiGd_kmF7fewA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8528eb8cf75f1437e333" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8528eb8cf75f1437e333" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EISar4pwRiiGd_kmF7fewA" + }, + "EJQ3OqqCS6mDNqaEtSEDHw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-devedition-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "YYgmPmqTT6uRNN44I0zHMA" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-macosx64-devedition-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "YYgmPmqTT6uRNN44I0zHMA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "osx-cross-devedition" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-macosx64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/YYgmPmqTT6uRNN44I0zHMA/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-macosx64-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "EJQ3OqqCS6mDNqaEtSEDHw" + }, + "EJnIZZZCTgqNmAIXlGOLlA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.32d4fa6766a37ce4df05" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.32d4fa6766a37ce4df05" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EJnIZZZCTgqNmAIXlGOLlA" + }, + "EKi_O_j9SnuuBNrkjlsNDw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.44769b5883cdb9ead00c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.44769b5883cdb9ead00c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EKi_O_j9SnuuBNrkjlsNDw" + }, + "EN4yVtGFRxiO-Nj59q155g": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-7", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "EN4yVtGFRxiO-Nj59q155g" + }, + "ENnEeP69RD6GSRKpN04cZg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=crashtest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-crashtest-e10s", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "ENnEeP69RD6GSRKpN04cZg" + }, + "EPauYYYYRc2ZXRe9Wyb1tw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "EPauYYYYRc2ZXRe9Wyb1tw" + }, + "EQ7BHnMjQ7-laAYNB87oQg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition" + }, + "dependencies": {}, + "kind": "build", + "label": "build-win64-devedition-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Win64 Dev Edition Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win64.py --config builds\\taskcluster_sub_win64\\opt.py --config disable_signing.py --config taskcluster_nightly.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs --custom-build-variant devedition" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.devedition.win64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.devedition.win64-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.win64-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.devedition-l10n.win64-opt.en-US", + "index.gecko.v2.maple.latest.devedition-l10n.win64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win64-devedition-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "ER6XktvxRLiL6STeaeH12Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.25a1766eedf2043a4685" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.25a1766eedf2043a4685" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ER6XktvxRLiL6STeaeH12Q" + }, + "ERGOeyR0ReW_HCzxf4t_eQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox" + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Linux32 Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux-nightly-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_32_builds.py disable_signing.py taskcluster_nightly.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux-opt.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux-nightly-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "ERiYmMV5RsOCX37Qx4gTzQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d771ab022cd9c6183563" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d771ab022cd9c6183563" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ERiYmMV5RsOCX37Qx4gTzQ" + }, + "ERuXKp5rTPivVHfeUprPNQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "20", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-20", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 20, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "20", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-20", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=20", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7557575b31f0baf658ac" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7557575b31f0baf658ac" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-20", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ERuXKp5rTPivVHfeUprPNQ" + }, + "ESLOb1EsQmWMUmfMzvT88w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.98f74e3ecad1574645e0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.98f74e3ecad1574645e0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ESLOb1EsQmWMUmfMzvT88w" + }, + "ETAJVdKVRjWyOVG7w4miEA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1bb0f0b195aa18c5f211" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1bb0f0b195aa18c5f211" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ETAJVdKVRjWyOVG7w4miEA" + }, + "EU8rUMEIRAamE_M-23wGRQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4414afd43b7ed32bb1e0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4414afd43b7ed32bb1e0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EU8rUMEIRAamE_M-23wGRQ" + }, + "EWAV1sb8TzWiqkmlT4inxg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "upload-symbols", + "label": "build-win32-devedition-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32-devedition" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win32-devedition-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "Er8D0-TxQ2yhtX-dCRv-4Q", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-win32-devedition-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "EWAV1sb8TzWiqkmlT4inxg" + }, + "EWJZLBzPQa6EAZONb26f2Q": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-gpu-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "EWJZLBzPQa6EAZONb26f2Q" + }, + "E_HXkS_OQm2L8pLyMWamIQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "18", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-18", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 18, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "18", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-18", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=18", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.378ebf62081b3a71cf02" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.378ebf62081b3a71cf02" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-18", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "E_HXkS_OQm2L8pLyMWamIQ" + }, + "EafzCD_cTaWVS2dgF3m7JQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.be0c995c1f629bf5d166" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.be0c995c1f629bf5d166" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EafzCD_cTaWVS2dgF3m7JQ" + }, + "Eaw1pWkKSjSBov_Y3NBakg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c1f6ef0d8be932c3e681" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c1f6ef0d8be932c3e681" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-marionette-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Eaw1pWkKSjSBov_Y3NBakg" + }, + "EbY8f2ACRhmnUyI_njIWrg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-crashtest-e10s", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "EbY8f2ACRhmnUyI_njIWrg" + }, + "EdXcFWIOQ3-CgX9dzQGghA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "EdXcFWIOQ3-CgX9dzQGghA" + }, + "EdytOFmoQkiayna6UqwW1g": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "EdytOFmoQkiayna6UqwW1g" + }, + "EeDV15ESR6SGDyFfO28HAw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.37025879b3687724248c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.37025879b3687724248c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EeDV15ESR6SGDyFfO28HAw" + }, + "EeZ3xPMJTguUBOer2sCesw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-clipboard", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-clipboard", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-clipboard", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "EeZ3xPMJTguUBOer2sCesw" + }, + "EfcdUOySQu6LtD3eW3kO5g": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b55d92b370caff3d26bf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b55d92b370caff3d26bf" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EfcdUOySQu6LtD3eW3kO5g" + }, + "EgcWts0XScG7tOqt--KysA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bb2969db1a9774a6991e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bb2969db1a9774a6991e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "EgcWts0XScG7tOqt--KysA" + }, + "Ei8Qw4BNRb-isjK2nq51rA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Ei8Qw4BNRb-isjK2nq51rA" + }, + "EiTz7HRRTNuvYH1etmS9rg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.37a17bb365933c49d531" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.37a17bb365933c49d531" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-marionette-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EiTz7HRRTNuvYH1etmS9rg" + }, + "EjwvYrfiSOaGMh71acFqqQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bf717a1f103e002cf668" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bf717a1f103e002cf668" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "EjwvYrfiSOaGMh71acFqqQ" + }, + "EjzSJYt1RX6cPiIH3K_MaQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3c42814b90824fc874ff" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3c42814b90824fc874ff" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EjzSJYt1RX6cPiIH3K_MaQ" + }, + "Ek-j_ZvGRCejZ-Vmb0C_rA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a858684fa13b94fdbc1b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a858684fa13b94fdbc1b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Ek-j_ZvGRCejZ-Vmb0C_rA" + }, + "Ek072YnWSVeb0Mj1ofHVog": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Ek072YnWSVeb0Mj1ofHVog" + }, + "Eki8yub7RU2b5VvqyAmAVw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag remote --e10s --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --tag remote --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-firefox-ui-functional-remote-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Eki8yub7RU2b5VvqyAmAVw" + }, + "El7sQQncQa2rpOWMpztonQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a04b1683f5c1c2610e3d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a04b1683f5c1c2610e3d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "El7sQQncQa2rpOWMpztonQ" + }, + "Em-O6vUuQSS5oDCa1TcMwA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "9", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2316c8ff1b86857ae9be" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2316c8ff1b86857ae9be" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Em-O6vUuQSS5oDCa1TcMwA" + }, + "EmQbrF5MQYyKMJv9wRPshA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=2", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.349748ce5e3318289be2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.349748ce5e3318289be2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "EmQbrF5MQYyKMJv9wRPshA" + }, + "EnoPBJtqTOqsjhscQ82InA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5b12f1fcdad4a38b5a57" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5b12f1fcdad4a38b5a57" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EnoPBJtqTOqsjhscQ82InA" + }, + "EqRrmrCfRrG_tlE1Ds69HA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.705a68778f0ebd5c41ac" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.705a68778f0ebd5c41ac" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "EqRrmrCfRrG_tlE1Ds69HA" + }, + "Er8D0-TxQ2yhtX-dCRv-4Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition" + }, + "dependencies": {}, + "kind": "build", + "label": "build-win32-devedition-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Win32 Dev Edition Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win32-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win32.py --config builds\\taskcluster_sub_win32\\opt.py --config disable_signing.py --config taskcluster_nightly.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --enable-pgo --append-env-variables-from-configs --custom-build-variant devedition" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.devedition.win32-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win32-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.devedition.win32-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win32-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.win32-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.devedition-l10n.win32-opt.en-US", + "index.gecko.v2.maple.latest.devedition-l10n.win32-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win32-devedition-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "ErGDKmtqTRC7Z001h7aA1w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e155149fa8e21ac5f8c1" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e155149fa8e21ac5f8c1" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "ErGDKmtqTRC7Z001h7aA1w" + }, + "ErLZWWaeQk2qAYP9n2HmdA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "ErLZWWaeQk2qAYP9n2HmdA" + }, + "EsSzRaO8TP6RGwiApgrErw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-add-on-devel", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "mozilla-beta", + "mozilla-release", + "mozilla-esr45", + "maple" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-add-on-devel/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64-add-on-devel" + }, + "symbol": "B", + "tier": 2 + } + }, + "metadata": { + "description": "Linux64 add-on-devel ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-add-on-devel/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-add-on-devel-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "add-on-devel", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-add-on-devel", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-add-on-devel", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-add-on-devel", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-add-on-devel", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-add-on-devel-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-add-on-devel/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "EsSzRaO8TP6RGwiApgrErw" + }, + "Et3Af9EgRnSEcnEFObY0UQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.92f13ac4adc94eadfa51" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.92f13ac4adc94eadfa51" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Et3Af9EgRnSEcnEFObY0UQ" + }, + "Eu5fxu81RFadeMUnfGsC6Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/firefox_ui_tests/functional.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster_mac.py", + "--tag", + "remote", + "--e10s", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--tag", + "remote", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5b559fdeaffca9688fde" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5b559fdeaffca9688fde" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-firefox-ui-functional-remote-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Eu5fxu81RFadeMUnfGsC6Q" + }, + "ExEyCBe1QIuVwdJ9gT52lw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c28ca7506c93e24c9529" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c28ca7506c93e24c9529" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ExEyCBe1QIuVwdJ9gT52lw" + }, + "ExKuumydSYONYo1em_nDpA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--gtest-suite=gtest", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.02a235a43911c21eac29" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.02a235a43911c21eac29" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-gtest", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ExKuumydSYONYo1em_nDpA" + }, + "ExxfBpHSRDafDzkI4fx42g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "telemetry-tests-client", + "unittest_suite": "telemetry-tests-client", + "unittest_try_name": "telemetry-tests-client-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-telemetry-tests-client-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "telemetry-tests-client", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "collection": { + "asan": true + }, + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "tc-e10s", + "tier": 3 + } + }, + "metadata": { + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-telemetry-tests-client-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/checkouts/gecko", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "remove_executables.py", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f16c11c5899f7e4b4b6c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f16c11c5899f7e4b4b6c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-telemetry-tests-client-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ExxfBpHSRDafDzkI4fx42g" + }, + "Ez87ttJ6Q3ilry_N64Xang": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Ez87ttJ6Q3ilry_N64Xang" + }, + "F-Ld56z1QpOCSTamF8XE_g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "35", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-35", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 35, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R35", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-35", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=35", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e7a9007581b786918781" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e7a9007581b786918781" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-35", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "F-Ld56z1QpOCSTamF8XE_g" + }, + "F1547tNWRZiaeft_ZiMqhg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "42", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-42", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 42, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "42", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-42", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=42", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ae3d06cd68646f669cd1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ae3d06cd68646f669cd1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-42", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "F1547tNWRZiaeft_ZiMqhg" + }, + "F1of6mFxQ4-Lu16rHJlgOg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R15", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.863f4698792a429eb03c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.863f4698792a429eb03c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-15", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "F1of6mFxQ4-Lu16rHJlgOg" + }, + "F1q11_nVTOmfB5JxCokpQQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "F1q11_nVTOmfB5JxCokpQQ" + }, + "F2JHArn1TlO1vkzXuC26_g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "rc2", + "tier": 1 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-robocop-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f90d89ff4bcea8467bd9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f90d89ff4bcea8467bd9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "F2JHArn1TlO1vkzXuC26_g" + }, + "F2Wjcb83RbecDndoQoogBw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6dab6e16884b507138be" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6dab6e16884b507138be" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F2Wjcb83RbecDndoQoogBw" + }, + "F2hmgW3aTZyEHek_ahoF1w": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "F2hmgW3aTZyEHek_ahoF1w" + }, + "F2kv3J56QQu0LTfcAJHnvA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b64c5141bbc1fce620bb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b64c5141bbc1fce620bb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F2kv3J56QQu0LTfcAJHnvA" + }, + "F3yTYgmtTAyjSrfhCEr-_Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.94b33c6f7050eea3ee9f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.94b33c6f7050eea3ee9f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F3yTYgmtTAyjSrfhCEr-_Q" + }, + "F7x-pS7zSSCTTWu1WwNC3g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e92a1d6aa0166b8e19a7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e92a1d6aa0166b8e19a7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F7x-pS7zSSCTTWu1WwNC3g" + }, + "F91qDhwNTPqRfO96C137-w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8dff19280985d7c68f69" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8dff19280985d7c68f69" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F91qDhwNTPqRfO96C137-w" + }, + "F93yMyf3SdmqRkb9gylnHA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.deb20f66eca09293b46f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.deb20f66eca09293b46f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "F93yMyf3SdmqRkb9gylnHA" + }, + "F9ppW2bxSruBXlgJw3kVsg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7ab0fceaedf509ce4098" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7ab0fceaedf509ce4098" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "F9ppW2bxSruBXlgJw3kVsg" + }, + "F9tBVhzGRTmbsOuXTfX9cA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3dbf8206465b77eeb345" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3dbf8206465b77eeb345" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F9tBVhzGRTmbsOuXTfX9cA" + }, + "FAPNisFPSCK_T4LhRdrWIA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-gpu-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "FAPNisFPSCK_T4LhRdrWIA" + }, + "FBpnV1SwTvSLjonCZWK-ig": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1aa164c609c8b70e9ba5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1aa164c609c8b70e9ba5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FBpnV1SwTvSLjonCZWK-ig" + }, + "FCGQs1JCRvWsJ3anjd2EZQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.168aea93f810b721c1c7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.168aea93f810b721c1c7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "FCGQs1JCRvWsJ3anjd2EZQ" + }, + "FDUaN1DaRo-ok5Y06cxyVQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=12" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-12", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "FDUaN1DaRo-ok5Y06cxyVQ" + }, + "FDd-MKPLQCWBrguJDtc06g": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "FDd-MKPLQCWBrguJDtc06g" + }, + "FEYCSovlRyC8gv1qRm32rg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "27", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-27", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 27, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R27", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-27", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=27", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f5baaf6c05284b4b0478" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f5baaf6c05284b4b0478" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-27", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "FEYCSovlRyC8gv1qRm32rg" + }, + "FGs0oGQMSEGZ7LH5PSfrrg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.497e3a6841f39080ed6e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.497e3a6841f39080ed6e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FGs0oGQMSEGZ7LH5PSfrrg" + }, + "FJChK-1fRLCez03G5GanRg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e395f5976e77741a8703" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e395f5976e77741a8703" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FJChK-1fRLCez03G5GanRg" + }, + "FKknYu_PRWi0FEvgTW9sHw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "FKknYu_PRWi0FEvgTW9sHw" + }, + "FLYXdGWAS8GU0Vio36d2Ag": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=6" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a0b6364e779b3b9f9589" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a0b6364e779b3b9f9589" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FLYXdGWAS8GU0Vio36d2Ag" + }, + "FMkzKLxpSmGgB3fm1EvarA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "FMkzKLxpSmGgB3fm1EvarA" + }, + "FOhNwFAeTd6Cip0tUHTUsg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.071583651af54f48919a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.071583651af54f48919a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FOhNwFAeTd6Cip0tUHTUsg" + }, + "FPVOoVvXR6OFoW_-YMjeDA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-8", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "FPVOoVvXR6OFoW_-YMjeDA" + }, + "FS5E4Ea0SGm3jEBgYYXLcg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ", + "build-signing": "CM_71PkbRiKEPpfHMeU_kA" + }, + "kind": "repackage", + "label": "repackage-linux-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "CM_71PkbRiKEPpfHMeU_kA", + "ERGOeyR0ReW_HCzxf4t_eQ", + "IIQOnLdoTueU9hBgwCPS7Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'linux-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-linux-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/target.complete.mar": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/artifacts/target.complete.mar", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/repackage.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "JOB_SCRIPT": "taskcluster/scripts/builder/repackage.sh", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "download_input setup repackage", + "MOZHARNESS_CONFIG": "repackage/linux64_signed.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/repackage.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SIGNED_INPUT": "https://queue.taskcluster.net/v1/task/CM_71PkbRiKEPpfHMeU_kA/artifacts/public/build/target.tar.bz2", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/host/bin/mar" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "docker-worker:cache:level-3-maple-build-linux-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-linux-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "FS5E4Ea0SGm3jEBgYYXLcg" + }, + "FSYGdasCQXOfQM9tIXv8SQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.11ed8d44cc20dc1caf63" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.11ed8d44cc20dc1caf63" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FSYGdasCQXOfQM9tIXv8SQ" + }, + "FT4BH3MUQJ6CrZ_86SJ4PQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b24bcd68f72581cad7fd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b24bcd68f72581cad7fd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FT4BH3MUQJ6CrZ_86SJ4PQ" + }, + "FXJblpiyT8GRVisYg9dASg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bca49d80cff53b647f3b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bca49d80cff53b647f3b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FXJblpiyT8GRVisYg9dASg" + }, + "FXs07sQRSuW4n5XjXo9quw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.35c180189c365aba1c9f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.35c180189c365aba1c9f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FXs07sQRSuW4n5XjXo9quw" + }, + "F_3svVUYSmWOUJu5bqmH-g": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.33fce1afe036b971ad14" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.33fce1afe036b971ad14" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F_3svVUYSmWOUJu5bqmH-g" + }, + "F_pcmfXRQvqqekLkrJW7Kw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7acc18143aec3a2439b4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7acc18143aec3a2439b4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "F_pcmfXRQvqqekLkrJW7Kw" + }, + "Fao3IQw5The4Npol8_MoTw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5e06a435add3cc837868" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5e06a435add3cc837868" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Fao3IQw5The4Npol8_MoTw" + }, + "FdKQkW0GQFiICi9rkudlRQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-media-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "FdKQkW0GQFiICi9rkudlRQ" + }, + "FeVvayqyRCilwt9aPMT6Cg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fced805ffcf8c8f60c72" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fced805ffcf8c8f60c72" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FeVvayqyRCilwt9aPMT6Cg" + }, + "Fg4dPOQuTmOUyssHKBMbkw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Fg4dPOQuTmOUyssHKBMbkw" + }, + "FgiWun06SbSmkZIHc4-EIg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe873621a0d30d31d91c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe873621a0d30d31d91c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FgiWun06SbSmkZIHc4-EIg" + }, + "FhE0s5sZSbeuHU9Ie2EgcA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "FhE0s5sZSbeuHU9Ie2EgcA" + }, + "FiZW48qYQmGs508bCTsaUg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5ba182dd1151c22254b4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5ba182dd1151c22254b4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FiZW48qYQmGs508bCTsaUg" + }, + "FjjF2xJ6T26Dmqt983IKpA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e0c0aeecd86732016cb1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e0c0aeecd86732016cb1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "FjjF2xJ6T26Dmqt983IKpA" + }, + "FkWM6UEoTLOqVV_YmINPWw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.eb2ac789175d159705a3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.eb2ac789175d159705a3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FkWM6UEoTLOqVV_YmINPWw" + }, + "FklQlaE_SLeAIEfA6-GaWg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "FklQlaE_SLeAIEfA6-GaWg" + }, + "Flco9mUkTqG6g9diX3x8TQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests-wdspec", + "unittest_suite": "web-platform-tests-wdspec", + "unittest_try_name": "web-platform-tests-wdspec-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-wdspec-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-wdspec", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Wd", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-wdspec-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.12ed1eebd62feab17a77" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.12ed1eebd62feab17a77" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-wdspec-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Flco9mUkTqG6g9diX3x8TQ" + }, + "FlyBZ-9QQp22MjJvZoBBrw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "FlyBZ-9QQp22MjJvZoBBrw" + }, + "FmDnCwUTSVygNQULUt-GXg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1df0a3c771d1b47a0cbf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1df0a3c771d1b47a0cbf" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FmDnCwUTSVygNQULUt-GXg" + }, + "FmK56R63Qu2WTT-wbloidg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "FmK56R63Qu2WTT-wbloidg" + }, + "FmWI49r1RzyqcCDAZiTsSQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3838e0abe6895eddce85" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3838e0abe6895eddce85" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FmWI49r1RzyqcCDAZiTsSQ" + }, + "FmwsaqDOSt69oWkeexTP4A": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-1", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "FmwsaqDOSt69oWkeexTP4A" + }, + "Fn7FDftPQ8iGvJrGa-vTEQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.02d97579dd637aaac72b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.02d97579dd637aaac72b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Fn7FDftPQ8iGvJrGa-vTEQ" + }, + "FnEFHJqtSGWYpRYiOnXPfw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-media-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "FnEFHJqtSGWYpRYiOnXPfw" + }, + "FnM_Y20FRq2s2-tgTgko_Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--reftest-suite=reftest", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--reftest-suite=reftest", + "--e10s", + "--total-chunk=2", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.23ada6291516c17bd9dd" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.23ada6291516c17bd9dd" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-reftest-e10s-1", + "os": "macosx", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "FnM_Y20FRq2s2-tgTgko_Q" + }, + "FnYZ2Nv6R5i75ubp5ryIIg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8952c3a85fcdc8993948" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8952c3a85fcdc8993948" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FnYZ2Nv6R5i75ubp5ryIIg" + }, + "FoPc_3DzTgmmcr49CyEISg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.da5d3937becdf200f42f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.da5d3937becdf200f42f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "FoPc_3DzTgmmcr49CyEISg" + }, + "FpXRVke0TDiPL5d4Xy06gQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.09102933af2b51f1e8be" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.09102933af2b51f1e8be" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FpXRVke0TDiPL5d4Xy06gQ" + }, + "FrBsqFyQQlqTfOoxvRwiEw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.58641fd8a736ff5494b2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.58641fd8a736ff5494b2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "FrBsqFyQQlqTfOoxvRwiEw" + }, + "FraJVRFETz2k9T2o3kv9Sw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-1", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0fdde641793b6ea9b3fe" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-1", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "FraJVRFETz2k9T2o3kv9Sw" + }, + "FsSv0PZuSOSulXCbEXHnow": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "FsSv0PZuSOSulXCbEXHnow" + }, + "FsrFQkj9RZCcMKhaL9XCFA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c9d7a6a0020f0cde940b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c9d7a6a0020f0cde940b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FsrFQkj9RZCcMKhaL9XCFA" + }, + "Fsx6Lu9gTWSUo76VTgZmbQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Fsx6Lu9gTWSUo76VTgZmbQ" + }, + "Fu-PlqzrRIKG8uleeGwfBg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b955139d0312a6a77e1a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b955139d0312a6a77e1a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Fu-PlqzrRIKG8uleeGwfBg" + }, + "Fu3WhFkTSHewlKNSvuzk_g": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dcf914ac3389580adfe3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dcf914ac3389580adfe3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Fu3WhFkTSHewlKNSvuzk_g" + }, + "FvghJP6xS3C05pvR8uOzZw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.227448ab5ccd5c85f979" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.227448ab5ccd5c85f979" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-marionette-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FvghJP6xS3C05pvR8uOzZw" + }, + "FxX2MMoZQzSr4vVYCHOTFQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.96a1b4538addba9992e5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.96a1b4538addba9992e5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FxX2MMoZQzSr4vVYCHOTFQ" + }, + "FyZtDyaeT5yf6ewyt5iLjQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4db56033c4ef2a4a8d54" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4db56033c4ef2a4a8d54" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "FyZtDyaeT5yf6ewyt5iLjQ" + }, + "G-2gMgBWS4WxzV0NUh_n9w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4a85782b75126c7f0ce2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4a85782b75126c7f0ce2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "G-2gMgBWS4WxzV0NUh_n9w" + }, + "G-mKEpvPSJKDJ8uY4x1F-Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e09106c65d61fb5b8d08" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e09106c65d61fb5b8d08" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-chrome-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "G-mKEpvPSJKDJ8uY4x1F-Q" + }, + "G5Ukdd6kSHW-wsG4n-UKyQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.79a745cf679d09d56023" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.79a745cf679d09d56023" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "G5Ukdd6kSHW-wsG4n-UKyQ" + }, + "G7DrL4HcRp6PUE2eUdLY2Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dff4ebccb2e09769859a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dff4ebccb2e09769859a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "G7DrL4HcRp6PUE2eUdLY2Q" + }, + "G7JLn1cmSY6zDtlhgIdAFA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0cf4b4a8e19b3ad4238e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0cf4b4a8e19b3ad4238e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "G7JLn1cmSY6zDtlhgIdAFA" + }, + "G9PkdDZmRiWebpGtQwY0vg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e3d4e7a40813d5cb6edb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e3d4e7a40813d5cb6edb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "G9PkdDZmRiWebpGtQwY0vg" + }, + "GDqDLSY1T3GArQUKM_z0gQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=reftest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-reftests-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "GDqDLSY1T3GArQUKM_z0gQ" + }, + "GEiZKi6ISCGp2zfIDnkEmQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=6" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6882f00a2fb99b83b14a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6882f00a2fb99b83b14a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GEiZKi6ISCGp2zfIDnkEmQ" + }, + "GF0qLM2FREaWt9tcESEy8Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.872233e845d762be00af" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.872233e845d762be00af" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GF0qLM2FREaWt9tcESEy8Q" + }, + "GGKiYj_ITiSHXFBmFf6mvA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "GGKiYj_ITiSHXFBmFf6mvA" + }, + "GGlPaIJ6T_qD-LoBwCs9dA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.92ce59c91b951a3d4732" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.92ce59c91b951a3d4732" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GGlPaIJ6T_qD-LoBwCs9dA" + }, + "GH1osViRTLmzLIFHd1jtNQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "40", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-40", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 40, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R40", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-40", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=40", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2e700c52b023aeab9b1d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2e700c52b023aeab9b1d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-40", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GH1osViRTLmzLIFHd1jtNQ" + }, + "GHD2RLUPRDmpcIgotrXw5Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.de1bc6db2def61648cde" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.de1bc6db2def61648cde" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GHD2RLUPRDmpcIgotrXw5Q" + }, + "GJQ-b3wVROq40NUyCJY7fQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d896485eb6209c6477ae" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d896485eb6209c6477ae" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GJQ-b3wVROq40NUyCJY7fQ" + }, + "GKmq-7TrS4ScNyl9Dq1cdQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "GKmq-7TrS4ScNyl9Dq1cdQ" + }, + "GM3v-cdMT6-AxR5DOI7bWA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "GM3v-cdMT6-AxR5DOI7bWA" + }, + "GMXJug8bTb-bJtNubBiExQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-st-an", + "build_type": "opt", + "kind": "static-analysis", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "static-analysis", + "label": "static-analysis-linux64-st-an/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "S", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Opt Static Analysis ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "static-analysis-linux64-st-an/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/static-analysis" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-st-an-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "DIST_TARGET_UPLOADS": "", + "DIST_UPLOADS": "", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "build", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_sub_linux_configs/64_stat_and_opt.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-st-an-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-st-an-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-st-an-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-st-an-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-st-an-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "static-analysis", + "label": "static-analysis-linux64-st-an/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "GMXJug8bTb-bJtNubBiExQ" + }, + "GPG2H_0_TVqkaei_Rt55Ww": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--xpcshell-suite=xpcshell", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--xpcshell-suite=xpcshell" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3b71ac496ab4323da704" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3b71ac496ab4323da704" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-xpcshell", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "GPG2H_0_TVqkaei_Rt55Ww" + }, + "GPPXQPr1RCmvoMd_K5WRwg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw", + "build-signing": "CvNsImdcQTSRGXvNOkgByg" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "CvNsImdcQTSRGXvNOkgByg", + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/CvNsImdcQTSRGXvNOkgByg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-xpcshell", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "GPPXQPr1RCmvoMd_K5WRwg" + }, + "GPRt-z7jSme6xMqSwq5iuw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "GPRt-z7jSme6xMqSwq5iuw" + }, + "GSN9Csa7RvK5UT9ZWh9Xrg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "GSN9Csa7RvK5UT9ZWh9Xrg" + }, + "GSdLkQyXQS61lC5PTo0YzA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64/debug", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "debug", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "GSdLkQyXQS61lC5PTo0YzA" + }, + "GT0XSHMVSoSwZTuVxwhkOg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.91815c7a64d390fe2bba" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.91815c7a64d390fe2bba" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GT0XSHMVSoSwZTuVxwhkOg" + }, + "GT5oN57hRN6ulUiwtfevXQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b9e312bff6e22bd7bc79" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b9e312bff6e22bd7bc79" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GT5oN57hRN6ulUiwtfevXQ" + }, + "GTTpIkR1R1WgtpY8OR3v0w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ea6c8fffac4210066f6a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ea6c8fffac4210066f6a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GTTpIkR1R1WgtpY8OR3v0w" + }, + "GTXwBSXkQdKe9SqwBDOxZw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=10" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.30ba0d231fe7c221f580" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.30ba0d231fe7c221f580" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GTXwBSXkQdKe9SqwBDOxZw" + }, + "GTd1QcuhTn2euQHshFPk2Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.14d7f928cbd6e1b9273f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.14d7f928cbd6e1b9273f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-marionette-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GTd1QcuhTn2euQHshFPk2Q" + }, + "GVezlUhRTryClbaHfZAcBQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b37a3aaab0c65fa73e38" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b37a3aaab0c65fa73e38" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GVezlUhRTryClbaHfZAcBQ" + }, + "GVkuU0djQ8WuSaQScPqX0g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8986467c54f850d43adf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8986467c54f850d43adf" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GVkuU0djQ8WuSaQScPqX0g" + }, + "GVxZYQQJTSaGc2GLa0vkhg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9b1f26f70ac67d656b0c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9b1f26f70ac67d656b0c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GVxZYQQJTSaGc2GLa0vkhg" + }, + "GVzE0cFwQhil1NUUb_bUFg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.21b69c5b5ada6acfba73" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.21b69c5b5ada6acfba73" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GVzE0cFwQhil1NUUb_bUFg" + }, + "GXCb_AGgSPqvR-2RnB-V8g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fc4566d4fca05a065a60" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fc4566d4fca05a065a60" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GXCb_AGgSPqvR-2RnB-V8g" + }, + "GY7soNWWQnaaZL6FSjuUlA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=13", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4e24781cb6d84579f362" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4e24781cb6d84579f362" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GY7soNWWQnaaZL6FSjuUlA" + }, + "GYiJJNF9TZ2BxU2MjlZc8A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.951acec9caffdd41a9dd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.951acec9caffdd41a9dd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GYiJJNF9TZ2BxU2MjlZc8A" + }, + "GYwgnCbOS36PjsDQ_aay1A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.60d98ad29ec638eb022f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.60d98ad29ec638eb022f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GYwgnCbOS36PjsDQ_aay1A" + }, + "G_VLply-RXeiH-afXNlSPw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8aba26fb23e7767d7efd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8aba26fb23e7767d7efd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "G_VLply-RXeiH-afXNlSPw" + }, + "GbDd97AZSmmNpvx3EPGfhQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0e8b16757d2a8318bea5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0e8b16757d2a8318bea5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GbDd97AZSmmNpvx3EPGfhQ" + }, + "GcCR3mouQVOET8OefpcPWA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4e1131ee9b0721b7b5d3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4e1131ee9b0721b7b5d3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GcCR3mouQVOET8OefpcPWA" + }, + "GcRejJHRQoOPpKI9jC9fKQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "22", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-22", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 22, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R22", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-22", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=22", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.205d462430141f94c91d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.205d462430141f94c91d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-22", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GcRejJHRQoOPpKI9jC9fKQ" + }, + "GdOh5u7gQ3KMfWtRHeYDZw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "GdOh5u7gQ3KMfWtRHeYDZw" + }, + "GedAtC_6RI2gLnXkrggapw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-8", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "GedAtC_6RI2gLnXkrggapw" + }, + "GgjqsuDCSRiPSCSUSuUmvw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "GgjqsuDCSRiPSCSUSuUmvw" + }, + "GibYL5gtQWma6Y1VXqherw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7941849c33d2572381ca" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7941849c33d2572381ca" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GibYL5gtQWma6Y1VXqherw" + }, + "GjWHep9wSc-Cw-fl0h-_zQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "GjWHep9wSc-Cw-fl0h-_zQ" + }, + "GjeogKeOQOq6wpvCEujQaA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "41", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-41", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 41, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "41", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-41", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=41", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3348dc8309f4387f91ee" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3348dc8309f4387f91ee" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-41", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GjeogKeOQOq6wpvCEujQaA" + }, + "GkpntDTES8-WK-W4fHLJ_w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c8470d7e12f8f3dea748" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c8470d7e12f8f3dea748" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GkpntDTES8-WK-W4fHLJ_w" + }, + "Glk5nQRjT9SLpdAgXU8_4w": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-6", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Glk5nQRjT9SLpdAgXU8_4w" + }, + "GnRUNaAJSOuitBTednOFEw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8d8e8dbb752e69781280" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8d8e8dbb752e69781280" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "GnRUNaAJSOuitBTednOFEw" + }, + "Go3HFjhGQHSp_XECYt05gw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f15e7b2925bd9814325a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f15e7b2925bd9814325a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Go3HFjhGQHSp_XECYt05gw" + }, + "GpAgQtc8SPK4e2ZmMAyhGw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "GpAgQtc8SPK4e2ZmMAyhGw" + }, + "GpfgYq7xRxqw838J1QRpfQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f8ebac0bc13d0ee047c0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f8ebac0bc13d0ee047c0" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GpfgYq7xRxqw838J1QRpfQ" + }, + "Gpkeq1j4RXCEhm1sisGcYQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "awsy", + "unittest_suite": "awsy", + "unittest_try_name": "awsy-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-awsy-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "awsy", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s", + "groupSymbol": "tc-SY-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "sy", + "tier": 1 + } + }, + "metadata": { + "description": "Are we slim yet ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-awsy-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\awsy_script.py --cfg mozharness\\configs\\awsy\\taskcluster_windows_config.py --e10s --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-awsy-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Gpkeq1j4RXCEhm1sisGcYQ" + }, + "Gpt-fyggQd60eH03QZ4G_w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.74d2301fb87fbcd2f151" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.74d2301fb87fbcd2f151" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Gpt-fyggQd60eH03QZ4G_w" + }, + "GqHugh4pR8i22JFk7Jx6mQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "GqHugh4pR8i22JFk7Jx6mQ" + }, + "Gqlq0rzfTL-i4RmToTykig": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e52e1045f5c0ee039430" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e52e1045f5c0ee039430" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Gqlq0rzfTL-i4RmToTykig" + }, + "Gsoe-ljdS0mjFufkmjlNOQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "24", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-24", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 24, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "24", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-24", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=24", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.83576466b9919145efad" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.83576466b9919145efad" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-24", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Gsoe-ljdS0mjFufkmjlNOQ" + }, + "Gtc0xWb9Q8WQZz3gc33_gA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Gtc0xWb9Q8WQZz3gc33_gA" + }, + "GvYYgDy9TiyVJu01g1gSBQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R12", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.705b19af1c8acae1333f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.705b19af1c8acae1333f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-12", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "GvYYgDy9TiyVJu01g1gSBQ" + }, + "Gygt09U8QDC0LDY57JWZ-A": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-7", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Gygt09U8QDC0LDY57JWZ-A" + }, + "H04u0uOkSnqewGpNRE6pJQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6de351357065f49cacdc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6de351357065f49cacdc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-firefox-ui-functional-remote-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "H04u0uOkSnqewGpNRE6pJQ" + }, + "H0YhW1SJSNWaLm6e3Qq24A": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --total-chunk=7 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "H0YhW1SJSNWaLm6e3Qq24A" + }, + "H2Lan9ZnTRGz-v1sbaTvYA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/marionette.py", + "--cfg", + "mozharness/configs/marionette/prod_config.py", + "--cfg", + "mozharness/configs/marionette/mac_taskcluster_config.py", + "--headless", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--headless", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.75542982b3be8c4dd15f" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.75542982b3be8c4dd15f" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-marionette-headless-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "H2Lan9ZnTRGz-v1sbaTvYA" + }, + "H2_38Y7JRPewTda0lgyJEA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cf3752903b016f611bfb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cf3752903b016f611bfb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "H2_38Y7JRPewTda0lgyJEA" + }, + "H2gfZe2yQXm99CK2bVUX3Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.61aaeab6065776fa1229" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.61aaeab6065776fa1229" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "H2gfZe2yQXm99CK2bVUX3Q" + }, + "H3fMbNFURWClrLyXlqSuVg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f5cccd266399f2727aee" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f5cccd266399f2727aee" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "H3fMbNFURWClrLyXlqSuVg" + }, + "H4XXePZBSsu04IbItr8ewQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.10504312d4e4c2b6b1b3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.10504312d4e4c2b6b1b3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "H4XXePZBSsu04IbItr8ewQ" + }, + "H4rOlv9_Rwyxd-fm0PhDfA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.62aa15f18258b9f28948" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.62aa15f18258b9f28948" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "H4rOlv9_Rwyxd-fm0PhDfA" + }, + "H6qDN5mPSP-pVUh_OfrFpA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4e608c3d2f605c54452b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4e608c3d2f605c54452b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "H6qDN5mPSP-pVUh_OfrFpA" + }, + "H77e009oS966XzfrnxfzoQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "H77e009oS966XzfrnxfzoQ" + }, + "H7sZwTM2Rb2K936Pqbh92w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=10" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9153e2d8550d0416540d" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9153e2d8550d0416540d" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-10", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "H7sZwTM2Rb2K936Pqbh92w" + }, + "HBAN9rjtSsGIFuXtO1zX9w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5083ae1ed4de2e271911" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5083ae1ed4de2e271911" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "HBAN9rjtSsGIFuXtO1zX9w" + }, + "HBnBwMl6R5uhs564yRL1WA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6e3f0b27ba3450f7e087" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6e3f0b27ba3450f7e087" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HBnBwMl6R5uhs564yRL1WA" + }, + "HBx4e0HRTems-yv1VDUdNA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a64215681bfa7d3c9525" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a64215681bfa7d3c9525" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HBx4e0HRTems-yv1VDUdNA" + }, + "HCzRVamESDG8_IdGdy3L4g": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg", + "build-signing": "Inxh9m1zSOujFUA1g7jxNg" + }, + "kind": "repackage", + "label": "repackage-win64-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg", + "Inxh9m1zSOujFUA1g7jxNg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64-devedition" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'win64-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-win64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.installer.exe", + "path": "public/build/target.installer.exe", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.complete.mar", + "path": "public/build/target.complete.mar", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\repackage.py --config repackage\\win64_signed.py --work-dir %cd:Z:=z:%\\build --download_input --setup --repackage" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "SIGNED_SETUP": "https://queue.taskcluster.net/v1/task/Inxh9m1zSOujFUA1g7jxNg/artifacts/public/build/setup.exe", + "SIGNED_ZIP": "https://queue.taskcluster.net/v1/task/Inxh9m1zSOujFUA1g7jxNg/artifacts/public/build/target.zip", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/host/bin/mar.exe" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win64-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win64-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-devedition-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win64-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win64-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win64-devedition-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-win64-devedition-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "HCzRVamESDG8_IdGdy3L4g" + }, + "HDAoLDFKSvqZryuwZC7Ypg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fa056a096dbc44e66e4f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fa056a096dbc44e66e4f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HDAoLDFKSvqZryuwZC7Ypg" + }, + "HDsrKXIMTbSHKnLkw3gSWw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-no-accel-e10s-2", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dfc93e2355df98ec6931" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-e10s-2", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "HDsrKXIMTbSHKnLkw3gSWw" + }, + "HEKrob2nT2y03EjVyOyVWg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition" + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux-devedition-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Linux32 devedition Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux-devedition-nightly-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "devedition", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_32_builds.py disable_signing.py balrog/production.py taskcluster_nightly.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.devedition.linux-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.devedition.linux-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.linux-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.devedition-l10n.linux-opt.en-US", + "index.gecko.v2.maple.latest.devedition-l10n.linux-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux-devedition-nightly-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "HEKrob2nT2y03EjVyOyVWg" + }, + "HEMW50g4RiGQHsk_0FbLzA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.872b3a0c594e4673a782" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.872b3a0c594e4673a782" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-8", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "HEMW50g4RiGQHsk_0FbLzA" + }, + "HF6zd2dNRz-byxbAt1eZlA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=7" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.048b7ee2f85cf3034c9c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.048b7ee2f85cf3034c9c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HF6zd2dNRz-byxbAt1eZlA" + }, + "HH7pbM9ZQhWjbuc4294nDw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R2", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e8063651d8d10079e226" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e8063651d8d10079e226" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HH7pbM9ZQhWjbuc4294nDw" + }, + "HHD1fvXCS9yvixKaoIZU8g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R10", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.001607d92ad4196b0c2a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.001607d92ad4196b0c2a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-10", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HHD1fvXCS9yvixKaoIZU8g" + }, + "HHUdHqbaRD-McHV4OK1uQQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-5", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "HHUdHqbaRD-McHV4OK1uQQ" + }, + "HI4BjVPBRNe_3mUzi893xQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "HI4BjVPBRNe_3mUzi893xQ" + }, + "HJHLbpIUQ1e0z5Tfvr7zIA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.28c504f4376c3706fd4c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.28c504f4376c3706fd4c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HJHLbpIUQ1e0z5Tfvr7zIA" + }, + "HKIb6m6iQhGxu7d6PgjuWw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "HKIb6m6iQhGxu7d6PgjuWw" + }, + "HLvcwTVQTqKbPeyxDM9xog": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.782e70815a3c6f41067a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.782e70815a3c6f41067a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HLvcwTVQTqKbPeyxDM9xog" + }, + "HODpCYzDQoatNazb2IiQyA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "HODpCYzDQoatNazb2IiQyA" + }, + "HOouXLOFRgG2M2irQ50wkQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-1", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "HOouXLOFRgG2M2irQ50wkQ" + }, + "HP5_kQqTTI6-LCq0Vhoi4w": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e1a98be8e7e8787d488b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e1a98be8e7e8787d488b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HP5_kQqTTI6-LCq0Vhoi4w" + }, + "HRMx1_xjQqWxNxfmoxUcIg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1568a585e0beedcc3af2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1568a585e0beedcc3af2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HRMx1_xjQqWxNxfmoxUcIg" + }, + "HSqw9OUQRRSr2IoYV-mbxQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5fb5e797c7aef96c2227" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5fb5e797c7aef96c2227" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HSqw9OUQRRSr2IoYV-mbxQ" + }, + "HTkVLxUVTa2j8r3bh0S0OA": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag local --e10s --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag local --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-firefox-ui-functional-local-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "HTkVLxUVTa2j8r3bh0S0OA" + }, + "HUzzuT7GRLidE8jLH8nBDw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e0a372324ae1eeacd577" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e0a372324ae1eeacd577" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "HUzzuT7GRLidE8jLH8nBDw" + }, + "HWRRZy67STmxIXSSIdPFQA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --total-chunk=7 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "HWRRZy67STmxIXSSIdPFQA" + }, + "HWoG7dlxTwG5jMcvzhFNZQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a2fb7a45023df385cb48" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a2fb7a45023df385cb48" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HWoG7dlxTwG5jMcvzhFNZQ" + }, + "HYXryPMRSKOkGuGX9yuf8w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "HYXryPMRSKOkGuGX9yuf8w" + }, + "HYpBsxySRDGQCNJ18XvD5g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4b401978c57b2f172bf4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4b401978c57b2f172bf4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HYpBsxySRDGQCNJ18XvD5g" + }, + "HYvUYyrLS-m9eROYypNBSQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9546eddd6428728fca28" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9546eddd6428728fca28" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HYvUYyrLS-m9eROYypNBSQ" + }, + "HZqxzUL3Ram90zbs9Au1ug": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.209691a1f874fbb506d0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.209691a1f874fbb506d0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HZqxzUL3Ram90zbs9Au1ug" + }, + "HbmrwmGrSzCaq8J8vY3wsw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-devedition-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "YYgmPmqTT6uRNN44I0zHMA" + }, + "kind": "upload-symbols", + "label": "build-macosx64-devedition-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "YYgmPmqTT6uRNN44I0zHMA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "osx-cross-devedition" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-macosx64-devedition-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "YYgmPmqTT6uRNN44I0zHMA", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-macosx64-devedition-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "HbmrwmGrSzCaq8J8vY3wsw" + }, + "Hc5VBHqHQ2mRdsZdi34huw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Hc5VBHqHQ2mRdsZdi34huw" + }, + "Hd8WZezUQf-DvgJ3j5O__w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--gtest-suite=gtest", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--gtest-suite=gtest" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ebf1c96835f9d189fb8d" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ebf1c96835f9d189fb8d" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-gtest", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Hd8WZezUQf-DvgJ3j5O__w" + }, + "HeqFmaOrTNGezS4PVQxyEQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "HeqFmaOrTNGezS4PVQxyEQ" + }, + "HhduOuqfRIGTGGB-1gr3hg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=8" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e865521e9b28ecb670cc" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e865521e9b28ecb670cc" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-8", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "HhduOuqfRIGTGGB-1gr3hg" + }, + "Hj0YC03NRpGx8_Lc9gMvyQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3b34cef459806a0ea3e4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3b34cef459806a0ea3e4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Hj0YC03NRpGx8_Lc9gMvyQ" + }, + "HlpOVUgbRA2uEqbi0M2Q4w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-android-api-16/debug", + "optimization": { + "skip-unless-schedules": [ + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "BW8vSUH1SbOPEd52XtjWNQ", + "F3r_JetlQ7azJsxzWUj71Q", + "I7Ps06L_RXiYnvXmdyzgyw", + "JDK3DN9yRmGSrRjNSqyMCw", + "UiMK4BDOTRyD-ct_25PQJQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "ZvnwVi2KRxm9HH0FVlAXag" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "UiMK4BDOTRyD-ct_25PQJQ" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "android-4-0-armv7-api16" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Android 4.0 api-16+ Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-android-api-16/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/android/R": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "type": "directory" + }, + "public/android/maven": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "type": "directory" + }, + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-android-api-16-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "api-16-debug", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py platform_supports_post_upload_to_latest.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@F3r_JetlQ7azJsxzWUj71Q project/gecko/android-sdk/android-sdk-linux.tar.xz@JDK3DN9yRmGSrRjNSqyMCw public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/rustc.tar.xz@ZvnwVi2KRxm9HH0FVlAXag public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ public/build/proguard-jar.tar.xz@BW8vSUH1SbOPEd52XtjWNQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "UiMK4BDOTRyD-ct_25PQJQ", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.mobile.android-api-16-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.mobile.android-api-16-debug", + "index.gecko.v2.maple.pushlog-id.343.mobile.android-api-16-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.mobile.android-api-16-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "queue:get-artifact:project/gecko/android-sdk/*", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-android-api-16-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-android-api-16/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-android" + }, + "task_id": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "HmFNt2v6Rd62sT38Hw6aYA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dcf2a07402a0d27b9b70" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dcf2a07402a0d27b9b70" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HmFNt2v6Rd62sT38Hw6aYA" + }, + "Hmf2HemFRqyz-si0Cf_AUQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag local --e10s --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag local --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-firefox-ui-functional-local-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Hmf2HemFRqyz-si0Cf_AUQ" + }, + "HnFaDPxORV2x-k5BpMsbeA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.57b91e2a475aee05709c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.57b91e2a475aee05709c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HnFaDPxORV2x-k5BpMsbeA" + }, + "HpnkUliXSWeCHqp-3bCuSQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f6640667f4191c8b00af" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f6640667f4191c8b00af" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HpnkUliXSWeCHqp-3bCuSQ" + }, + "HrDlhVYpTl2gjQDi9TKj_Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e5a65f9fb8d10201169b" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e5a65f9fb8d10201169b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-2", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "HrDlhVYpTl2gjQDi9TKj_Q" + }, + "HrdIkxIiRKiQlzf4t9889g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e8de4f2f60b4b2043d49" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e8de4f2f60b4b2043d49" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HrdIkxIiRKiQlzf4t9889g" + }, + "HsU1XOORTe2G1I4Zl04wPg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3d3d860de5dd98cbebdd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3d3d860de5dd98cbebdd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HsU1XOORTe2G1I4Zl04wPg" + }, + "HuNiuk9yQ0u98Ma2A3G3Aw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.023d2fdeb9bbde2d9d6b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.023d2fdeb9bbde2d9d6b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HuNiuk9yQ0u98Ma2A3G3Aw" + }, + "Hwbb2jEFRLKFE7xFktEuOQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a39e3bbb85d6a310466e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a39e3bbb85d6a310466e" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Hwbb2jEFRLKFE7xFktEuOQ" + }, + "HwfsJBk2R_-AzFYEB18KkQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f192986113c264ae773e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f192986113c264ae773e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-firefox-ui-functional-remote-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HwfsJBk2R_-AzFYEB18KkQ" + }, + "HxgEalB4SiOHL1CVyZybwg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e6c9cb34458b552fa4b9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e6c9cb34458b552fa4b9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "HxgEalB4SiOHL1CVyZybwg" + }, + "HxiAn2hJQJulWjJqPED9GQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "40", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-40", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 40, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "40", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-40", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=40", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b704505cfb594345b149" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b704505cfb594345b149" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-40", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "HxiAn2hJQJulWjJqPED9GQ" + }, + "Hyg0X4MaSqG948VIn7xnIw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cad0289bdb6540b208c7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cad0289bdb6540b208c7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Hyg0X4MaSqG948VIn7xnIw" + }, + "Hzen8iwuR8aPtMy9v8hAvA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-4", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Hzen8iwuR8aPtMy9v8hAvA" + }, + "I2MkBlV6SFSNHgcPVJfKqA": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw", + "build-signing": "CvNsImdcQTSRGXvNOkgByg", + "repackage": "X2BjbNwyQoiCoigarFSAmA" + }, + "kind": "repackage-signing", + "label": "repackage-signing-win64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "CvNsImdcQTSRGXvNOkgByg", + "X2BjbNwyQoiCoigarFSAmA", + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'win64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-win64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "X2BjbNwyQoiCoigarFSAmA", + "taskType": "repackage" + }, + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/target.installer.exe" + ], + "taskId": "X2BjbNwyQoiCoigarFSAmA", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win64-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win64-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win64-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:mar_sha384", + "project:releng:signing:format:sha2signcode" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-win64-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "I2MkBlV6SFSNHgcPVJfKqA" + }, + "I2SnFkuBQDSdWaP7ndNZ9w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cb22125108318ac35de6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cb22125108318ac35de6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "I2SnFkuBQDSdWaP7ndNZ9w" + }, + "I3vTjUkJSniiBDUUxBH2HQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5e386cd31a7db3734c94" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5e386cd31a7db3734c94" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "I3vTjUkJSniiBDUUxBH2HQ" + }, + "I5VDNY9dRO6wshNCfLekyg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=6" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cb037f060ec2968f2704" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cb037f060ec2968f2704" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-6", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "I5VDNY9dRO6wshNCfLekyg" + }, + "IA7kXEO7QQKxDTreSUzAUw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "5", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a62aa4ec39da239b7932" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a62aa4ec39da239b7932" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "IA7kXEO7QQKxDTreSUzAUw" + }, + "IAlSaxKPSeGCXjqAuvUUGA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--headless", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2777e2cb2d869db7acff" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2777e2cb2d869db7acff" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-marionette-headless-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IAlSaxKPSeGCXjqAuvUUGA" + }, + "IBBgqtI-QfORyehb2McwxQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-clipboard-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "IBBgqtI-QfORyehb2McwxQ" + }, + "IBEh_JAATqefbsrK2aoxYw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f54adaf2c46561e2c0aa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f54adaf2c46561e2c0aa" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "IBEh_JAATqefbsrK2aoxYw" + }, + "IFOzTRwPS7irIPpw-MArzQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "IFOzTRwPS7irIPpw-MArzQ" + }, + "IFSBB1zgSPyJJZLo9vnm6A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e49d33326e5b8c8f8be9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e49d33326e5b8c8f8be9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IFSBB1zgSPyJJZLo9vnm6A" + }, + "IHusgLfmSX-S9i0PckOM3w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=10" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ee202ff7753fcac08fda" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ee202ff7753fcac08fda" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IHusgLfmSX-S9i0PckOM3w" + }, + "IKg02xE3SF-7SDvZqhc0Bg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.df78f11c01f63a36c2c4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.df78f11c01f63a36c2c4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IKg02xE3SF-7SDvZqhc0Bg" + }, + "INdyQ3b9QDGAK4FehHdDlA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=11" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-11", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "INdyQ3b9QDGAK4FehHdDlA" + }, + "IPW84xTxTYahLtR7hGTlGA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.305df518f13e71cda26c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.305df518f13e71cda26c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IPW84xTxTYahLtR7hGTlGA" + }, + "IReh6cj9Q7uOKs4jpO1q4g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.10dbdb1899545f775c06" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.10dbdb1899545f775c06" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IReh6cj9Q7uOKs4jpO1q4g" + }, + "ITcaf0MhR_-WBhUtu7ddFg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2a588e1a70cf3cf5f3f4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2a588e1a70cf3cf5f3f4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ITcaf0MhR_-WBhUtu7ddFg" + }, + "IUolHzZjSki7Sztzbv9XlQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "IUolHzZjSki7Sztzbv9XlQ" + }, + "IW2Ddne_RtSa8h6mNtuUIw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a974149989e678d1d1ba" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a974149989e678d1d1ba" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IW2Ddne_RtSa8h6mNtuUIw" + }, + "IXKFDWlWSXKUZCRlwi_BOw": { + "attributes": { + "always_target": false, + "build_platform": "win32-add-on-devel", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "mozilla-beta", + "mozilla-release", + "mozilla-esr45", + "maple" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-win32-add-on-devel/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32-add-on-devel" + }, + "symbol": "B", + "tier": 2 + } + }, + "metadata": { + "description": "Windows32 add-on-devel ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win32-add-on-devel/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win32.py --config builds\\taskcluster_sub_win32\\addondevel.py --config balrog\\production.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 10800, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win32-add-on-devel", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win32-add-on-devel", + "index.gecko.v2.maple.pushlog-id.343.firefox.win32-add-on-devel", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-add-on-devel", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win32-add-on-devel/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "IXKFDWlWSXKUZCRlwi_BOw" + }, + "IZaio5OfSSyIq6MBE6vy3g": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-marionette-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "IZaio5OfSSyIq6MBE6vy3g" + }, + "I_4nMPmcT3yEHTSxf_JsYg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-asan/debug", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Drteyl6bQ5eXbG9YIua45w", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Bd", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Debug ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-asan/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-asan-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "asan-tc-and-debug", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@Drteyl6bQ5eXbG9YIua45w public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "debug asan", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-asan-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-asan-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-asan-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-asan-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-asan-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-asan/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "I_4nMPmcT3yEHTSxf_JsYg" + }, + "I_iiRYt5SZKh4NqE-fYQ0g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ae9d81d867cafba469c9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ae9d81d867cafba469c9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "I_iiRYt5SZKh4NqE-fYQ0g" + }, + "IbgWzRqiRBeXkgqlEzzV6Q": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "IbgWzRqiRBeXkgqlEzzV6Q" + }, + "IcungUbFTMiG3pb8RaDVOw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.64c7db3005f395848c6d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.64c7db3005f395848c6d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IcungUbFTMiG3pb8RaDVOw" + }, + "IdLlIQFZQZiGEf2FnJgNSQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-reftest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-reftest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple opt test reftest-e10s", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fd28215952d592c8407f" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-reftest-e10s", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "IdLlIQFZQZiGEf2FnJgNSQ" + }, + "Ifd9-fJ5TIaEEifUQlk_jg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Ifd9-fJ5TIaEEifUQlk_jg" + }, + "IkJDxH6XRWuzJzRS0D0pUw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9428613c0019840b9e8d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9428613c0019840b9e8d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IkJDxH6XRWuzJzRS0D0pUw" + }, + "IkY0mNuxQLSanElCg7LPtA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=12" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-12", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "IkY0mNuxQLSanElCg7LPtA" + }, + "Ikd38ROLT22J8ejIlChI9Q": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=2", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.be729bd3988fba96a3a9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.be729bd3988fba96a3a9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Ikd38ROLT22J8ejIlChI9Q" + }, + "IkpRYPFcSE6ZHMf9cNwLpw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ac61caece2f84d730d7f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ac61caece2f84d730d7f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "IkpRYPFcSE6ZHMf9cNwLpw" + }, + "In-BR2UpTFai2PQ1UyAtWQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bad4597e7dcc2a5d96cd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bad4597e7dcc2a5d96cd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "In-BR2UpTFai2PQ1UyAtWQ" + }, + "InGloIDnTKSG2fXTSC8rHA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "InGloIDnTKSG2fXTSC8rHA" + }, + "Inxh9m1zSOujFUA1g7jxNg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "build-signing", + "label": "build-signing-win64-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64-devedition" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'win64-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-win64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/setup.exe" + ], + "taskId": "EQ7BHnMjQ7-laAYNB87oQg", + "taskType": "build" + }, + { + "formats": [ + "sha2signcode", + "widevine" + ], + "paths": [ + "public/build/target.zip" + ], + "taskId": "EQ7BHnMjQ7-laAYNB87oQg", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.devedition.win64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.devedition.win64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win64-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.win64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.devedition-l10n.win64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.devedition-l10n.win64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-win64-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "Inxh9m1zSOujFUA1g7jxNg" + }, + "IoPOYniiSiK_r2jMiczXtg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8b97c4ed923f02b82458" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8b97c4ed923f02b82458" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "IoPOYniiSiK_r2jMiczXtg" + }, + "IpExFtipSSqUvnMi8KqHpw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--tag", + "local", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.aaf32b8698d1378efee7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aaf32b8698d1378efee7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-firefox-ui-functional-local-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IpExFtipSSqUvnMi8KqHpw" + }, + "Ipitc6_6Q26RIiQ7rXVP-A": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests-wdspec", + "unittest_suite": "web-platform-tests-wdspec", + "unittest_try_name": "web-platform-tests-wdspec-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-wdspec-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-wdspec", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Wd", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-wdspec-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.372fa0af1eae674e0a34" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.372fa0af1eae674e0a34" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-wdspec-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Ipitc6_6Q26RIiQ7rXVP-A" + }, + "IqtfE_rNQKOfWr4M32zriw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a18b15efb88712eeeb8e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a18b15efb88712eeeb8e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "IqtfE_rNQKOfWr4M32zriw" + }, + "IrJ7PGYfTaGPsHpTEDGPBQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --cppunittest-suite=cppunittest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-cppunit", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "IrJ7PGYfTaGPsHpTEDGPBQ" + }, + "IsUQ26N8TVy-QvV8_PFRIg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "24", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-24", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 24, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R24", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-24", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=24", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d0fc0b2926652c4e2011" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d0fc0b2926652c4e2011" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-24", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "IsUQ26N8TVy-QvV8_PFRIg" + }, + "ItZgKHlIQ_ucysyjGeCQEw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a3e3bbea73ffdaef6650" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a3e3bbea73ffdaef6650" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ItZgKHlIQ_ucysyjGeCQEw" + }, + "Iu60ENIySt-QvQcSnpfZAA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.35eeb5a7d716eda91416" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.35eeb5a7d716eda91416" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Iu60ENIySt-QvQcSnpfZAA" + }, + "IuIauZTqTPq5fFybaZWHaA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.51242acb8ecf95072642" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.51242acb8ecf95072642" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "IuIauZTqTPq5fFybaZWHaA" + }, + "IufwpNj2Qq-PCfnoxA2oZA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a32cec765292f1959abf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a32cec765292f1959abf" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "IufwpNj2Qq-PCfnoxA2oZA" + }, + "Iyls7NFpRQ2M7oDyXzN20Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b46fcd1e95aef4b797a5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b46fcd1e95aef4b797a5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Iyls7NFpRQ2M7oDyXzN20Q" + }, + "Izf2iG7kQnaSRv5XAfibmA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.06a9621264575c83a960" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.06a9621264575c83a960" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Izf2iG7kQnaSRv5XAfibmA" + }, + "J-BvsHf3S5-JdsinHQ1D6w": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "J-BvsHf3S5-JdsinHQ1D6w" + }, + "J-ECCX7CTbeMxtj4EzXzOA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-2", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "J-ECCX7CTbeMxtj4EzXzOA" + }, + "J0bRk-0kTG2PxOWf7PK-mA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7000b5220cdb64c1a47f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7000b5220cdb64c1a47f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "J0bRk-0kTG2PxOWf7PK-mA" + }, + "J1_idcdZRI-E64yYQBzPzg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-2", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "J1_idcdZRI-E64yYQBzPzg" + }, + "J1jgFE4jQdCjkO7qeLKLrg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4587c6b29c078a490d24" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4587c6b29c078a490d24" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "J1jgFE4jQdCjkO7qeLKLrg" + }, + "J3b_NQh2SD-KI5VDb6xrZw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a7316b86c79804f66da5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a7316b86c79804f66da5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "J3b_NQh2SD-KI5VDb6xrZw" + }, + "J48r6XvRRjqdosBf4r4m0w": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "J48r6XvRRjqdosBf4r4m0w" + }, + "J4n4EXoRQcG9grSj3FeDbg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=12" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-12", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "J4n4EXoRQcG9grSj3FeDbg" + }, + "J4seHb9mQ4mqGs1qWWDL6A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7abfaeabe03391b59c69" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7abfaeabe03391b59c69" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "J4seHb9mQ4mqGs1qWWDL6A" + }, + "J5PrnynxST6X7KbCrYYoxg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2f28ee673a0a90bd3676" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2f28ee673a0a90bd3676" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "J5PrnynxST6X7KbCrYYoxg" + }, + "J5fz1TQQTRGbeWTVeatRJA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3ba79679ad099c062803" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3ba79679ad099c062803" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "J5fz1TQQTRGbeWTVeatRJA" + }, + "J6UgqSULRoy7Y4hp4-pydQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-2", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.483184b63ee32ad7687b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-2", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "J6UgqSULRoy7Y4hp4-pydQ" + }, + "JA7IoTWiTfG4sK9-RFs4uQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-gpu-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "JA7IoTWiTfG4sK9-RFs4uQ" + }, + "JAODinbNQbuQj_smLkU5iA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "36", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-36", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 36, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R36", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-36", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=36", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6edad79e1274ba8a08c6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6edad79e1274ba8a08c6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-36", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JAODinbNQbuQj_smLkU5iA" + }, + "JAmi0ZpST-aDI5PbcLZ6pQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/marionette.py", + "--cfg", + "mozharness/configs/marionette/prod_config.py", + "--cfg", + "mozharness/configs/marionette/mac_taskcluster_config.py", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.938f2c08bf05a5c5f782" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.938f2c08bf05a5c5f782" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-marionette-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "JAmi0ZpST-aDI5PbcLZ6pQ" + }, + "JBMfzjN2TiqaVfAbAggJmA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.edd78b6a6af98b677065" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.edd78b6a6af98b677065" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JBMfzjN2TiqaVfAbAggJmA" + }, + "JBTI2j4vQ8C7KXs7dVcu7Q": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "JBTI2j4vQ8C7KXs7dVcu7Q" + }, + "JD-3YR5AQquD3muOTlNQiw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6128cb6a5e9c198dedcd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6128cb6a5e9c198dedcd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JD-3YR5AQquD3muOTlNQiw" + }, + "JEE63s61TjyOy2OhFspM0A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cf19c8108d2acc38c3b1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cf19c8108d2acc38c3b1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JEE63s61TjyOy2OhFspM0A" + }, + "JEdciYFiTg2ks9xLFZDD3Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R14", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=14", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c8e8db1e023fae007542" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c8e8db1e023fae007542" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-14", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JEdciYFiTg2ks9xLFZDD3Q" + }, + "JFujTQcxR0aJpwtnVwTd9w": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-6", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "JFujTQcxR0aJpwtnVwTd9w" + }, + "JGhBLGLPQieUHJrmmp3XBA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f03ccedc5554599a44ae" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f03ccedc5554599a44ae" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JGhBLGLPQieUHJrmmp3XBA" + }, + "JHI4HtLvTDSvPjiSvbeaEg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.aa266393776c793e021a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aa266393776c793e021a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JHI4HtLvTDSvPjiSvbeaEg" + }, + "JIqOSCNwQxuGEHp6IlljlQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8043b949cfcff7eea168" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8043b949cfcff7eea168" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JIqOSCNwQxuGEHp6IlljlQ" + }, + "JJOBexggRjyRpIg6cI91yw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux/debug", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Linux32 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "debug", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_32_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "JJOBexggRjyRpIg6cI91yw" + }, + "JK7DjU7zSR6cVtamqK-_fg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "JK7DjU7zSR6cVtamqK-_fg" + }, + "JKFjF3tqQV2AJlGFWDG70g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R9", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f3d55c74bb665a6fec84" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f3d55c74bb665a6fec84" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-9", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JKFjF3tqQV2AJlGFWDG70g" + }, + "JKktQ4mpSn6sR8z1kWzaKw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "11", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.130002c31f45bf873fef" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.130002c31f45bf873fef" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JKktQ4mpSn6sR8z1kWzaKw" + }, + "JMBn2_iNQnOLrauxP8VBqA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --total-chunk=7 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "JMBn2_iNQnOLrauxP8VBqA" + }, + "JMS2n0IVTUK3OXTXMfwrJg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "JMS2n0IVTUK3OXTXMfwrJg" + }, + "JNI8BghLR9SBVxe9CdjvgA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.007933f74ad412a1a5d3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.007933f74ad412a1a5d3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JNI8BghLR9SBVxe9CdjvgA" + }, + "JNXTVZxXR7-0lKWgFcK_cA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "JNXTVZxXR7-0lKWgFcK_cA" + }, + "JOLhVtVrT7CBfyYHz6LKaw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-4", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "JOLhVtVrT7CBfyYHz6LKaw" + }, + "JRu9w_GSQlGQubjudTKA5w": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "awsy", + "unittest_suite": "awsy", + "unittest_try_name": "awsy-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-awsy-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "awsy", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s", + "groupSymbol": "tc-SY-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "sy", + "tier": 1 + } + }, + "metadata": { + "description": "Are we slim yet ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-awsy-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\awsy_script.py --cfg mozharness\\configs\\awsy\\taskcluster_windows_config.py --e10s --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-awsy-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "JRu9w_GSQlGQubjudTKA5w" + }, + "JX8dCuIeTcG49iW4MizJpg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "4", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3f51b7030e070cf5caf7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3f51b7030e070cf5caf7" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JX8dCuIeTcG49iW4MizJpg" + }, + "JYEmwVrtQaKFXta7DwPGWg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "JYEmwVrtQaKFXta7DwPGWg" + }, + "J_435MraQLeS6VwdbU7oDQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.52fd93f37585eec71813" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.52fd93f37585eec71813" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "J_435MraQLeS6VwdbU7oDQ" + }, + "JaQMEXcuRCmIv35fDZv2iQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "JaQMEXcuRCmIv35fDZv2iQ" + }, + "JeW_c7qHRpWg7IKukI3eng": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn2", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.96471643dcbdab89294d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.96471643dcbdab89294d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JeW_c7qHRpWg7IKukI3eng" + }, + "Jfuyyg0LRRiWBzqbRnRhPg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Jfuyyg0LRRiWBzqbRnRhPg" + }, + "JgH_Ua4RQ0GWsbAMw1GLWw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-base-toolchains", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-base-toolchains/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "cKHlcCX7SqixxejROzMw3Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Bb", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 base toolchains Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-base-toolchains/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-base-toolchains-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@cKHlcCX7SqixxejROzMw3Q public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "base-toolchains", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-base-toolchains-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-base-toolchains-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-base-toolchains/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "JgH_Ua4RQ0GWsbAMw1GLWw" + }, + "JhAllH9bRmKGaCp_6Ciguw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fce3edb3c57e17652957" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fce3edb3c57e17652957" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JhAllH9bRmKGaCp_6Ciguw" + }, + "JhFV2NVGST-QwjkMS8dUYw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=12" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-12", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "JhFV2NVGST-QwjkMS8dUYw" + }, + "JlGOLaEJSkyWuecz9wWMWA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a073d240e78b049eb162" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a073d240e78b049eb162" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-5", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "JlGOLaEJSkyWuecz9wWMWA" + }, + "JnglCDykRvKHdVwwdA6bQQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bd9dc72a7258b5bcc5b5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bd9dc72a7258b5bcc5b5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JnglCDykRvKHdVwwdA6bQQ" + }, + "Jp8XGns3S0GBVeojFJnnZQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-clipboard-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Jp8XGns3S0GBVeojFJnnZQ" + }, + "JqQ3d34jQMmZWx0YwbAChQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8362bff680b59251d889" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8362bff680b59251d889" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JqQ3d34jQMmZWx0YwbAChQ" + }, + "JquyzCtgQjyIFRv9MLehcA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.da754a724686ed18cf40" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.da754a724686ed18cf40" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JquyzCtgQjyIFRv9MLehcA" + }, + "JrsUGQxFSxGtWjQwkfkcNg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-3", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "JrsUGQxFSxGtWjQwkfkcNg" + }, + "Jta7ZDL7SQKsmiP-5CJP0A": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.091b1726a202c1bda6da" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.091b1726a202c1bda6da" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-4", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Jta7ZDL7SQKsmiP-5CJP0A" + }, + "Jtp5OL4KShucc3RB3erDOA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.10402b74d265a67738a6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.10402b74d265a67738a6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Jtp5OL4KShucc3RB3erDOA" + }, + "JvQeEsMVTOqoaIocSjLBFQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "18", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-18", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 18, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R18", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-18", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=18", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6155410c96542050fbe3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6155410c96542050fbe3" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-18", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JvQeEsMVTOqoaIocSjLBFQ" + }, + "Jvdk-CEvRuKd1E3x98oMRg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=12" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-12", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Jvdk-CEvRuKd1E3x98oMRg" + }, + "JxEZbLEiRhm_aYTW0Wr6og": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=5" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.37aebc1b5cc7e678d6e2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.37aebc1b5cc7e678d6e2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JxEZbLEiRhm_aYTW0Wr6og" + }, + "JxFxQBVtTgO3N4j9xPJINQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0f31f188150c57c99368" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0f31f188150c57c99368" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JxFxQBVtTgO3N4j9xPJINQ" + }, + "JxV9HXRYRMOiizV1p1GrYQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "31", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-31", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 31, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R31", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-31", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=31", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c0e600f532db6626a139" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c0e600f532db6626a139" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-31", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "JxV9HXRYRMOiizV1p1GrYQ" + }, + "JxxGuaPTRmSQD7phBbaOFA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a1cc048ff87f2dc2c1f1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a1cc048ff87f2dc2c1f1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JxxGuaPTRmSQD7phBbaOFA" + }, + "Jy35xuopRp2XuO7o7FSrhw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f4e6f812eb53829fff05" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f4e6f812eb53829fff05" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Jy35xuopRp2XuO7o7FSrhw" + }, + "JytweLgdRt6k5rp5mZmv1Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cfaa27757719699dafd7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cfaa27757719699dafd7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "JytweLgdRt6k5rp5mZmv1Q" + }, + "JzghlHKuSZ6M00rns112Vw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=10" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-10", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "JzghlHKuSZ6M00rns112Vw" + }, + "K-1YFz7SRxqNiP45akuMTA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.692659a17ff64d522685" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.692659a17ff64d522685" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "K-1YFz7SRxqNiP45akuMTA" + }, + "K0KrcoAJTfKInh3B9MuUbQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.de4d2984e31350ae4972" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.de4d2984e31350ae4972" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "K0KrcoAJTfKInh3B9MuUbQ" + }, + "K1LbSVzMRYW5Or_NaaDyHw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --cppunittest-suite=cppunittest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-cppunit", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "K1LbSVzMRYW5Or_NaaDyHw" + }, + "K1jViyf8QviIrReLtXsxGQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4c211d2dcb828d144896" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4c211d2dcb828d144896" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "K1jViyf8QviIrReLtXsxGQ" + }, + "K2brpujOQHSPkRabPQSaug": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1a3ab5ae966e38cc2a86" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1a3ab5ae966e38cc2a86" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "K2brpujOQHSPkRabPQSaug" + }, + "K3lk8dL5QAi1HL9dE8bpjw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.87c342ea3c85827c7256" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.87c342ea3c85827c7256" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "K3lk8dL5QAi1HL9dE8bpjw" + }, + "K4flZxOzSNOlzZnXjV208A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.32a6324eab245bf2ebce" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.32a6324eab245bf2ebce" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "K4flZxOzSNOlzZnXjV208A" + }, + "K4p8BOwrQMWhqrgIwnjx7A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn4", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e517f91df37b7c910234" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e517f91df37b7c910234" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "K4p8BOwrQMWhqrgIwnjx7A" + }, + "K4rqabMaQACix4Z8LN1gBQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.440ab8e78cb7e40543e4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.440ab8e78cb7e40543e4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "K4rqabMaQACix4Z8LN1gBQ" + }, + "K6NR_lK_Q3eU5Hfd35L-UA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.763c413b0b9d64056ae2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.763c413b0b9d64056ae2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "K6NR_lK_Q3eU5Hfd35L-UA" + }, + "K6kDQ89OShGX7LgaeU6Y6A": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0f30f51fdf731faac675" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0f30f51fdf731faac675" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "K6kDQ89OShGX7LgaeU6Y6A" + }, + "K6sy5VzPQEmRvRkEO9Dxmw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "K6sy5VzPQEmRvRkEO9Dxmw" + }, + "K94t6vZCSV-YagptvDGbQQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "K94t6vZCSV-YagptvDGbQQ" + }, + "KAH1g2HiRbqwd7bKHHmQZg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.04a985978b15a8df1884" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.04a985978b15a8df1884" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-clipboard-e10s", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "KAH1g2HiRbqwd7bKHHmQZg" + }, + "KCUVIXAfTw-ILdd1jk5Htg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "KCUVIXAfTw-ILdd1jk5Htg" + }, + "KCduHDh8QYmVyEfacKYywQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.24160490f358800addd7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.24160490f358800addd7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-firefox-ui-functional-remote-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KCduHDh8QYmVyEfacKYywQ" + }, + "KDgcNdPTRVm8HBArSkzCWg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.614a22a20b700552bbef" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.614a22a20b700552bbef" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KDgcNdPTRVm8HBArSkzCWg" + }, + "KE0355NPS8SXLmEVzyy0JQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e1151bafc73ced16b291" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e1151bafc73ced16b291" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KE0355NPS8SXLmEVzyy0JQ" + }, + "KEIb8wsBQe-yq4PWydgmDg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "KEIb8wsBQe-yq4PWydgmDg" + }, + "KEVgi7aESfqoWTv3tVrs_Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-crashtest-e10s", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "KEVgi7aESfqoWTv3tVrs_Q" + }, + "KHb-E5UNTzqCawSQ5buXbg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R11", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dc64c273264ecf0c6c5a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dc64c273264ecf0c6c5a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-11", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KHb-E5UNTzqCawSQ5buXbg" + }, + "KL_bxB7JS7q8l_DKgk1grg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "KL_bxB7JS7q8l_DKgk1grg" + }, + "KM56yZWFS9WqSmnICklv_w": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-crashtest-e10s", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "KM56yZWFS9WqSmnICklv_w" + }, + "KM_s9AABSfKaplPIkxiCKw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f4e5011abcade929959d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f4e5011abcade929959d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KM_s9AABSfKaplPIkxiCKw" + }, + "KNB4G5PPRy2VdSmxSa6mPg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2637156970cf73ac5d29" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2637156970cf73ac5d29" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KNB4G5PPRy2VdSmxSa6mPg" + }, + "KNDJYXz6QsGtSsNzRR2NeA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "upload-symbols", + "label": "build-linux64-devedition-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-devedition-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "P4fV6_sIRbaB1wx8qiJ0ng", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-linux64-devedition-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "KNDJYXz6QsGtSsNzRR2NeA" + }, + "KSe1U0ebQ76P_uT1tr_LYQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b79696912e3bd8d6e65d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b79696912e3bd8d6e65d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-marionette-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KSe1U0ebQ76P_uT1tr_LYQ" + }, + "KUUUgDwgRbOVMtofugALxA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "KUUUgDwgRbOVMtofugALxA" + }, + "KUgfsGXYRdGtmEt3JzcqLg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-6", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "KUgfsGXYRdGtmEt3JzcqLg" + }, + "KVbgPQvnSj20EWt-iE4X0A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bf7eb29b94d7714b45a9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bf7eb29b94d7714b45a9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KVbgPQvnSj20EWt-iE4X0A" + }, + "KXOsLoCQS26jiF55jOeuGg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "KXOsLoCQS26jiF55jOeuGg" + }, + "KXz5xNbrTBOgbWFbb38g5Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "KXz5xNbrTBOgbWFbb38g5Q" + }, + "K_EUfbHJTdSWgLlRm8XS0Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.daa79430b0e1c4f6345b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.daa79430b0e1c4f6345b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "K_EUfbHJTdSWgLlRm8XS0Q" + }, + "K_owp7SJTS-hAVZuy8o6Vw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "K_owp7SJTS-hAVZuy8o6Vw" + }, + "KakOc6H5Q-eh_8BRalUcbA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "KakOc6H5Q-eh_8BRalUcbA" + }, + "Kcn2if--TfybtHEKa4Wh7Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "28", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-28", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 28, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R28", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-28", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=28", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.88315b5aea4c86baabd3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.88315b5aea4c86baabd3" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-28", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Kcn2if--TfybtHEKa4Wh7Q" + }, + "KdGorXh1RPKxyOltZ5ko_w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "27", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-27", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 27, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "27", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-27", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=27", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.502b14b32aa43be5d8dc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.502b14b32aa43be5d8dc" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-27", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KdGorXh1RPKxyOltZ5ko_w" + }, + "KdIwcwabT82mOc_59vkjBw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "21", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-21", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 21, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R21", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-21", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=21", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d6b192a6b4195ef06668" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d6b192a6b4195ef06668" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-21", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KdIwcwabT82mOc_59vkjBw" + }, + "KdhrA3WdTNih8zclvQjNTQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cd9703c9c8ada5c52ee9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cd9703c9c8ada5c52ee9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KdhrA3WdTNih8zclvQjNTQ" + }, + "KfRvVF2lQG-puta_cC4VZA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.35de65d3429c34677215" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.35de65d3429c34677215" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-1", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "KfRvVF2lQG-puta_cC4VZA" + }, + "Km6SlUDNQx60MFav_ePCRA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8b1b51e868cff6cde165" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8b1b51e868cff6cde165" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Km6SlUDNQx60MFav_ePCRA" + }, + "KmfihCpqTNu0MVD8V5cpYg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "15", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b483514f571eaeeebf4e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b483514f571eaeeebf4e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KmfihCpqTNu0MVD8V5cpYg" + }, + "KouO1HEWSrqfX2R2erKTzA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-android-api-16/opt", + "optimization": { + "skip-unless-schedules": [ + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "BW8vSUH1SbOPEd52XtjWNQ", + "F3r_JetlQ7azJsxzWUj71Q", + "I7Ps06L_RXiYnvXmdyzgyw", + "JDK3DN9yRmGSrRjNSqyMCw", + "UiMK4BDOTRyD-ct_25PQJQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "ZvnwVi2KRxm9HH0FVlAXag" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "UiMK4BDOTRyD-ct_25PQJQ" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "android-4-0-armv7-api16" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Android 4.0 api-16+ Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-android-api-16/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/android/R": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "type": "directory" + }, + "public/android/maven": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "type": "directory" + }, + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-android-api-16-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "api-16", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py platform_supports_post_upload_to_latest.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@F3r_JetlQ7azJsxzWUj71Q project/gecko/android-sdk/android-sdk-linux.tar.xz@JDK3DN9yRmGSrRjNSqyMCw public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/rustc.tar.xz@ZvnwVi2KRxm9HH0FVlAXag public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ public/build/proguard-jar.tar.xz@BW8vSUH1SbOPEd52XtjWNQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "UiMK4BDOTRyD-ct_25PQJQ", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.mobile.android-api-16-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.mobile.android-api-16-opt", + "index.gecko.v2.maple.pushlog-id.343.mobile.android-api-16-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.mobile.android-api-16-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "queue:get-artifact:project/gecko/android-sdk/*", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-android-api-16-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-android-api-16/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-android" + }, + "task_id": "KouO1HEWSrqfX2R2erKTzA" + }, + "KpYEZXjdTg6GuYN0fr9H2g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f94b9bce74eda5067265" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f94b9bce74eda5067265" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KpYEZXjdTg6GuYN0fr9H2g" + }, + "KqDv5zstRD6qrN8WyQr46Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.00a11799fd298eae86d1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.00a11799fd298eae86d1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KqDv5zstRD6qrN8WyQr46Q" + }, + "KrGFdEA1QweRAHPo20Kafw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c6ec2c113467449f0733" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c6ec2c113467449f0733" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KrGFdEA1QweRAHPo20Kafw" + }, + "KrOhj9kZRemBFSqkWu0Mrw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3e0eb78732ad04483dad" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3e0eb78732ad04483dad" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KrOhj9kZRemBFSqkWu0Mrw" + }, + "KscdEPF0TAuE83d9VWC8Uw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "KscdEPF0TAuE83d9VWC8Uw" + }, + "KuUlCzjfRYCtMCTT7oJx-g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "47", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-47", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 47, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R47", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-47", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=47", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e9a104a74d621ecef611" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e9a104a74d621ecef611" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-47", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "KuUlCzjfRYCtMCTT7oJx-g" + }, + "KuynImGOR7afCOJN7qouxQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.aa189c6e41840fc79aa0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aa189c6e41840fc79aa0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KuynImGOR7afCOJN7qouxQ" + }, + "Kv9YIhI9Q1-PtRR8NnLUDA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d44a547a0dea1b87881a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d44a547a0dea1b87881a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Kv9YIhI9Q1-PtRR8NnLUDA" + }, + "KvYyy2MzQpWk0P-XSpwrcQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a15cb63856edc01c87f3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a15cb63856edc01c87f3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KvYyy2MzQpWk0P-XSpwrcQ" + }, + "KwilvyCFT6eqDPRxDEr1Uw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "KwilvyCFT6eqDPRxDEr1Uw" + }, + "KwxdpjMsSJepS_uxg0NUdQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-no-accel-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-no-accel-1", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.07aafad3c06e6e5622e2" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-1", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "KwxdpjMsSJepS_uxg0NUdQ" + }, + "KztBb3cnTgubt7Hkbo4SSg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3b49fa5d0eaecc7f4b43" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3b49fa5d0eaecc7f4b43" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "KztBb3cnTgubt7Hkbo4SSg" + }, + "L-6MQquCR16fa7-65xm2-w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "22", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-22", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 22, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R22", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-22", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=22", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.584eda287c260175defa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.584eda287c260175defa" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-22", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "L-6MQquCR16fa7-65xm2-w" + }, + "L06mr7FpT-WoReX50HxIlw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "upload-symbols", + "label": "build-linux64-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "LnQHtSIyQq-3fF5zNPWrQw", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-linux64-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "L06mr7FpT-WoReX50HxIlw" + }, + "L0OEOPAKS2q8XBetI3OkbQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "17", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-17", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 17, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "17", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-17", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=17", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f3d3987b04b94dd09027" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f3d3987b04b94dd09027" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-17", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "L0OEOPAKS2q8XBetI3OkbQ" + }, + "L2BGab18TkSiIhXFVlIMlA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "L2BGab18TkSiIhXFVlIMlA" + }, + "L3py6w_yRiC2CcnBv4qsMA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c44773df49781aebbaeb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c44773df49781aebbaeb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "L3py6w_yRiC2CcnBv4qsMA" + }, + "L465fWKMQ_aX2bfMTlyUsQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-valgrind", + "build_type": "opt", + "kind": "valgrind", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "valgrind", + "label": "valgrind-linux64-valgrind/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA", + "bkOytu3MRuy3luNXBVYDpQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "V", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Valgrind Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "valgrind-linux64-valgrind/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/valgrind" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-valgrind-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "valgrind", + "MOZHARNESS_ACTIONS": "get-secrets build valgrind-test", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "bkOytu3MRuy3luNXBVYDpQ", + "type": "task-image" + }, + "maxRunTime": 72000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-valgrind-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-valgrind-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-valgrind-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-valgrind-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-valgrind-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "valgrind", + "label": "valgrind-linux64-valgrind/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "L465fWKMQ_aX2bfMTlyUsQ" + }, + "L48Wtr-4QXGVv4V8MeXWKA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c09bee3bf1bb18b298b1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c09bee3bf1bb18b298b1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "L48Wtr-4QXGVv4V8MeXWKA" + }, + "L4tbg-R-RDqCiXgJg4MpgA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R9", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7d11a0744c351c6f5af1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7d11a0744c351c6f5af1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-9", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "L4tbg-R-RDqCiXgJg4MpgA" + }, + "L4vB6cdJSFWpkw0JReMJrA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9ab7d4dbeb62a0383890" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9ab7d4dbeb62a0383890" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "L4vB6cdJSFWpkw0JReMJrA" + }, + "L5j5ZsJaSjWLXCFSOjOMLg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a4ae99a08b6da7e736d0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a4ae99a08b6da7e736d0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "L5j5ZsJaSjWLXCFSOjOMLg" + }, + "L8vDo7BRQuWNe-z6z7cc8A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.527e1e7ac5c6f3a07670" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.527e1e7ac5c6f3a07670" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "L8vDo7BRQuWNe-z6z7cc8A" + }, + "L9iKjBwmScGaIZnep08VRg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=2", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.30b405926ffcb6af6f1d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.30b405926ffcb6af6f1d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "L9iKjBwmScGaIZnep08VRg" + }, + "L9zBNfl3Teya6Vdq-wdjIg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "L9zBNfl3Teya6Vdq-wdjIg" + }, + "LCVH9E33R6S1X9Z2lNtbKQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "LCVH9E33R6S1X9Z2lNtbKQ" + }, + "LChGG3MkTa6kyOXnf9lMQw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cad073dee150eeda8e05" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cad073dee150eeda8e05" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LChGG3MkTa6kyOXnf9lMQw" + }, + "LDdKzwYKTt2YxC_vdWnqPg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "19", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-19", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 19, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R19", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-19", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=19", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9043d880ee1bb1719d1c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9043d880ee1bb1719d1c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-19", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "LDdKzwYKTt2YxC_vdWnqPg" + }, + "LEplXu6CRU2Q0JN0UP56fw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --cppunittest-suite=cppunittest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-cppunit", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "LEplXu6CRU2Q0JN0UP56fw" + }, + "LHqRoNXPRq6PPObkC7-01w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6e8d5bc961d49d83df32" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6e8d5bc961d49d83df32" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LHqRoNXPRq6PPObkC7-01w" + }, + "LJxGD7V5Su-OpfcH3wdp6g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c70ab1ccf9429e1e7de3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c70ab1ccf9429e1e7de3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LJxGD7V5Su-OpfcH3wdp6g" + }, + "LJykPt06QDuFO3H_Y1K2aw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "25", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-25", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 25, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R25", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-25", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=25", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c84e7c5b5b71bbfcc24a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c84e7c5b5b71bbfcc24a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-25", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "LJykPt06QDuFO3H_Y1K2aw" + }, + "LKGY2Xo-SJ2cScGFpnToaw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "LKGY2Xo-SJ2cScGFpnToaw" + }, + "LKdrdpy9Qo2GNz1VCr50YQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan-reporter", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-asan-reporter/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Drteyl6bQ5eXbG9YIua45w", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "BoR", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Opt ASAN Reporter Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-asan-reporter/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-asan-reporter-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "asan-reporter-tc", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@Drteyl6bQ5eXbG9YIua45w public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "asan-reporter", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-asan-reporter-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-asan-reporter-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-asan-reporter-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-asan-reporter-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-asan-reporter-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-asan-reporter/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "LKdrdpy9Qo2GNz1VCr50YQ" + }, + "LLLDRCXpRlCBajaEd4TjvQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e4b7852df2949a725787" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e4b7852df2949a725787" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LLLDRCXpRlCBajaEd4TjvQ" + }, + "LLV2ftvHSKWqJI55RJUqhg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "LLV2ftvHSKWqJI55RJUqhg" + }, + "LN1nU_PKS3mm_8kXGGyMmg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08e14fb1fa1b7deeee4a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08e14fb1fa1b7deeee4a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LN1nU_PKS3mm_8kXGGyMmg" + }, + "LP2rmw7RQBW1ujHjSkiszg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "LP2rmw7RQBW1ujHjSkiszg" + }, + "LPx7lQbUTzC_nz5oz8Gffw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.623f914d02e42f0fc0fc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.623f914d02e42f0fc0fc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "LPx7lQbUTzC_nz5oz8Gffw" + }, + "LQsVjU-kRBmM1FEKDcC2QA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.29c7635f08ecd43aa240" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.29c7635f08ecd43aa240" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LQsVjU-kRBmM1FEKDcC2QA" + }, + "LRFrT3xES_uZeNXvO4hXJQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "LRFrT3xES_uZeNXvO4hXJQ" + }, + "LSsrcSf8QoKjVWZga7rAmA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag remote --e10s --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --tag remote --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-firefox-ui-functional-remote-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "LSsrcSf8QoKjVWZga7rAmA" + }, + "LT1-iC7tThi_yxlFy3Eyww": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.57881ba76fef2d832b59" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.57881ba76fef2d832b59" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "LT1-iC7tThi_yxlFy3Eyww" + }, + "LTKOhbS2R8CVMEGZo4sDzw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08c6f962c8524c5a59b3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08c6f962c8524c5a59b3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LTKOhbS2R8CVMEGZo4sDzw" + }, + "LU46WSI7QXGu8oH7mAUkOg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f6213a7a6ccde2bcee44" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f6213a7a6ccde2bcee44" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LU46WSI7QXGu8oH7mAUkOg" + }, + "LXGas11iTKeSI1Qhvsshjg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08fb7c27bee4e124bb62" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08fb7c27bee4e124bb62" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LXGas11iTKeSI1Qhvsshjg" + }, + "LXHlbDH1SBKEUVb-f-BtbQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "macosx64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.78e5fb15c8b254d1db09" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.78e5fb15c8b254d1db09" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-7", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "LXHlbDH1SBKEUVb-f-BtbQ" + }, + "LZ6ryVJuTJWRTm5NjbCazw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=a11y --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=a11y" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-a11y", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "LZ6ryVJuTJWRTm5NjbCazw" + }, + "LZyve_OoRNahTVDxFNa1ww": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e6ca83b80faa3282e373" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e6ca83b80faa3282e373" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LZyve_OoRNahTVDxFNa1ww" + }, + "LcmEoklbQ9ml0sHojpGmqw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag remote --e10s --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag remote --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-firefox-ui-functional-remote-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "LcmEoklbQ9ml0sHojpGmqw" + }, + "Le6Uc5nbSeaPwgB2HIoXUQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "33", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-33", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 33, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R33", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-33", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=33", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bdf707cad13f4a6777a2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bdf707cad13f4a6777a2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-33", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Le6Uc5nbSeaPwgB2HIoXUQ" + }, + "Le9E53-9RBSvScBVz7t2jA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.34f9e8fa2d14e6119e60" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.34f9e8fa2d14e6119e60" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Le9E53-9RBSvScBVz7t2jA" + }, + "LeHUw7sxSbaFd3zJXWSgzA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X12", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.012a51057c34dd6b70b7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.012a51057c34dd6b70b7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LeHUw7sxSbaFd3zJXWSgzA" + }, + "LesBEibbQdiHTiR6zHJjNg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "35", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-35", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 35, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "35", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-35", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=35", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.00501c24bf17bbaa8fa1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.00501c24bf17bbaa8fa1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-35", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "LesBEibbQdiHTiR6zHJjNg" + }, + "Lf6CpBc4SziSjSLV7wER-Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5bc2f0447c320287e564" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5bc2f0447c320287e564" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Lf6CpBc4SziSjSLV7wER-Q" + }, + "LfjFBUPEQPGhsavifRuhNw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.28f2c9ea5ecfe343dc65" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.28f2c9ea5ecfe343dc65" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LfjFBUPEQPGhsavifRuhNw" + }, + "LgqRXjimRZq83vWevV66Mw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.40c09a05960ec279953c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.40c09a05960ec279953c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "LgqRXjimRZq83vWevV66Mw" + }, + "Lh6L5vSJRsyfMITmxDvpuw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.04d4ee9b59abd185af65" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.04d4ee9b59abd185af65" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Lh6L5vSJRsyfMITmxDvpuw" + }, + "LligtWL7TvumtCSyvc339A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.051eb1ad4c2dd52e3845" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.051eb1ad4c2dd52e3845" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LligtWL7TvumtCSyvc339A" + }, + "LmafDvzCSiS4f5wiMFn0KA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "build-signing", + "label": "build-signing-linux-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'linux-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-linux-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "gpg", + "widevine" + ], + "paths": [ + "public/build/target.tar.bz2" + ], + "taskId": "HEKrob2nT2y03EjVyOyVWg", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.devedition.linux-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.devedition.linux-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.linux-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.devedition-l10n.linux-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.devedition-l10n.linux-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:gpg", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-linux-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "LmafDvzCSiS4f5wiMFn0KA" + }, + "Ln8nHk9TSR2iqP6_hPTNKQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b15726f495826652c7f0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b15726f495826652c7f0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Ln8nHk9TSR2iqP6_hPTNKQ" + }, + "LnQHtSIyQq-3fF5zNPWrQw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox" + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-nightly-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py disable_signing.py taskcluster_nightly.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux64-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-nightly-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "Lo5zeJxETl2ihV9706wagQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Lo5zeJxETl2ihV9706wagQ" + }, + "LoI8mxgFQzWOyHEBTF1nxQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "LoI8mxgFQzWOyHEBTF1nxQ" + }, + "LqLULzZlTsuTZ6YVCyiGIQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "LqLULzZlTsuTZ6YVCyiGIQ" + }, + "LrRBXhVLRmqP4Q_iphuldw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.897894c217909146e62e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.897894c217909146e62e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LrRBXhVLRmqP4Q_iphuldw" + }, + "Lt25lIn1RRCaNpuYksQcUw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "c4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f71694b01fb22c4e18a5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f71694b01fb22c4e18a5" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Lt25lIn1RRCaNpuYksQcUw" + }, + "LtMboItyRa-ICYWt9XZ9Fg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a9b5546019d599147ce6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a9b5546019d599147ce6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LtMboItyRa-ICYWt9XZ9Fg" + }, + "LtPji9HmRUCdr7nDJw6XDw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9a7b2c54df74302ffef3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9a7b2c54df74302ffef3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LtPji9HmRUCdr7nDJw6XDw" + }, + "Lu87PK1GQOe9v9BYvHSUDQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.641e50b06071668f64ab" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.641e50b06071668f64ab" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Lu87PK1GQOe9v9BYvHSUDQ" + }, + "LvVDlAnATgSgA9YImeINQA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg", + "build-signing": "SheaYg0sSZedXNtxs0uuHw", + "repackage": "V3kPDsjGQROj--B7-b-MlQ" + }, + "kind": "repackage-signing", + "label": "repackage-signing-macosx64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "FJ8BwxDbQU23Q6DzXGC2hA", + "FzokDPkGT7uIQ5tleaGBfA", + "IIQOnLdoTueU9hBgwCPS7Q", + "SheaYg0sSZedXNtxs0uuHw", + "V3kPDsjGQROj--B7-b-MlQ", + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "osx-cross" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'macosx64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-macosx64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "V3kPDsjGQROj--B7-b-MlQ", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.macosx64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.macosx64-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.macosx64-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.macosx64-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.macosx64-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:mar_sha384" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-macosx64-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "LvVDlAnATgSgA9YImeINQA" + }, + "Lve4E7LuSl62K8TqHCMtxg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.278c29ac0d6d71952a7f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.278c29ac0d6d71952a7f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Lve4E7LuSl62K8TqHCMtxg" + }, + "LwlyWWbqScuDmSJhmGtkMQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d9c0b6e56e1e72385bf1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d9c0b6e56e1e72385bf1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "LwlyWWbqScuDmSJhmGtkMQ" + }, + "LxIAogmQTBOE4v_pHjF1wQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "LxIAogmQTBOE4v_pHjF1wQ" + }, + "Ly3vbSt9Q7SIDc6eEOZKZg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.93098ac2247ffe8be474" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.93098ac2247ffe8be474" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Ly3vbSt9Q7SIDc6eEOZKZg" + }, + "M-5ysXACR_idVLQNYGObyg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "M-5ysXACR_idVLQNYGObyg" + }, + "M-66yxcLQ--7pvxkNjjayQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.77d4439ec76b379b38fd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.77d4439ec76b379b38fd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "M-66yxcLQ--7pvxkNjjayQ" + }, + "M-9u2bxcSyezqfHimUeiVA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bc348a70e20efb76df8a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bc348a70e20efb76df8a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "M-9u2bxcSyezqfHimUeiVA" + }, + "M0iti5TDR2i_wN1iPLJ3Mg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.64732f3e9ce6c0cf7018" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.64732f3e9ce6c0cf7018" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "M0iti5TDR2i_wN1iPLJ3Mg" + }, + "M16xPumyR_2-C3qywUSrWA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6bf43c7001f46db9cd18" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6bf43c7001f46db9cd18" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "M16xPumyR_2-C3qywUSrWA" + }, + "M1P-dKIRTJqT91Mdgdl9-w": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-1", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "M1P-dKIRTJqT91Mdgdl9-w" + }, + "M4lG-5BZThCk-CRxFBNI9A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3b6894ec89d70b158af2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3b6894ec89d70b158af2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "M4lG-5BZThCk-CRxFBNI9A" + }, + "M4zD7UTKQ2KpWRcy83o2gA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "M4zD7UTKQ2KpWRcy83o2gA" + }, + "M54xSZDXTa62MnppDUNirw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b48082c0ca6aebecf297" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b48082c0ca6aebecf297" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "M54xSZDXTa62MnppDUNirw" + }, + "M7P3NR3RQRG-YjcSvzfUeQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "M7P3NR3RQRG-YjcSvzfUeQ" + }, + "M88EMzPdQ-SfDA28rGgEMg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "M88EMzPdQ-SfDA28rGgEMg" + }, + "M9iQqfGIQJ-YRBKa8wmTHw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "17", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-17", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 17, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R17", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-17", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=17", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08ff3a8efe44e2f4a6b5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08ff3a8efe44e2f4a6b5" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-17", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "M9iQqfGIQJ-YRBKa8wmTHw" + }, + "M9uoTGtBSXCs6Mxcodyprg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3e68276ef80313608687" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3e68276ef80313608687" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "M9uoTGtBSXCs6Mxcodyprg" + }, + "MANqJoTxQU2C_SGjxjTeDg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f266ec0f58c35ba8a9ef" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f266ec0f58c35ba8a9ef" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MANqJoTxQU2C_SGjxjTeDg" + }, + "MC3ad-gOSISj8mf__a6MlQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "MC3ad-gOSISj8mf__a6MlQ" + }, + "MDv09No3SqOfHTV9ko0osQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "MDv09No3SqOfHTV9ko0osQ" + }, + "ME-qD3HIQzCGQUIu5bZ7mA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9c444b57b6d38229c92f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9c444b57b6d38229c92f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ME-qD3HIQzCGQUIu5bZ7mA" + }, + "MEN4T3akS_i04bYjzHLvmA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6ef5405bc0cab2a19bdc" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6ef5405bc0cab2a19bdc" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "MEN4T3akS_i04bYjzHLvmA" + }, + "MGCt0auLTbOrItu53gUzjg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.39bc2735cba5aa93cda3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.39bc2735cba5aa93cda3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MGCt0auLTbOrItu53gUzjg" + }, + "MGSKVrr5TbiKTgu7ZNxNSg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.962143345ba5b9d2dca1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.962143345ba5b9d2dca1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MGSKVrr5TbiKTgu7ZNxNSg" + }, + "MJ4hdAiESA2nRzGuIgjvYQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=10" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-10", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "MJ4hdAiESA2nRzGuIgjvYQ" + }, + "MJc-w1atR52Qkp_tYMaQUQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b5c4fdd5ef2779b0ae72" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b5c4fdd5ef2779b0ae72" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MJc-w1atR52Qkp_tYMaQUQ" + }, + "MJpw1ycnQwqYRhHbjkq8tw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8efa8e8f60c96dcf280a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8efa8e8f60c96dcf280a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MJpw1ycnQwqYRhHbjkq8tw" + }, + "MNV8OP5VSlOIyHylSOY4vA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6ea0446d3e94f23a7bef" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6ea0446d3e94f23a7bef" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MNV8OP5VSlOIyHylSOY4vA" + }, + "MNZvjbTeTniX0EBkbi623g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.50f086a9d7d0ea6b3d20" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.50f086a9d7d0ea6b3d20" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-2", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "MNZvjbTeTniX0EBkbi623g" + }, + "MOEaYbe7T-SYz4kt8TEXYA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-macosx64/debug", + "optimization": { + "skip-unless-schedules": [ + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "FJ8BwxDbQU23Q6DzXGC2hA", + "FzokDPkGT7uIQ5tleaGBfA", + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "MNl-65MNRDOXQcncoy40LQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "cUKYM4gsS3KZuHKOYHjJqw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "osx-cross" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "MacOS X x64 Cross-compile ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-macosx64/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-macosx64-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "cross-debug", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@MNl-65MNRDOXQcncoy40LQ public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/hfsplus-tools.tar.xz@FJ8BwxDbQU23Q6DzXGC2hA public/build/dmg.tar.xz@FzokDPkGT7uIQ5tleaGBfA public/build/rustc.tar.xz@cUKYM4gsS3KZuHKOYHjJqw public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.macosx64-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.macosx64-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.macosx64-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-macosx64-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-macosx64/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-macosx64" + }, + "task_id": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "MOGTxADISJmk4kysDNHUQA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "geckoview", + "unittest_suite": "geckoview", + "unittest_try_name": "geckoview" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-geckoview", + "optimization": { + "skip-unless-schedules-or-seta": [ + "geckoview", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "geckoview", + "name": "geckoview" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "gv", + "tier": 1 + } + }, + "metadata": { + "description": "Geckoview run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-geckoview", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/geckoview_example.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=geckoview", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/geckoview_example.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.20ca36b63fbbf53793ca" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.20ca36b63fbbf53793ca" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-geckoview", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MOGTxADISJmk4kysDNHUQA" + }, + "MOWHNOK3QG2l2cRNFbT5lQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1c00be9e584b57706f6f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1c00be9e584b57706f6f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MOWHNOK3QG2l2cRNFbT5lQ" + }, + "MQ8XBV0eTAy3IGSez0ueFw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-media-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "MQ8XBV0eTAy3IGSez0ueFw" + }, + "MSAqx4fYTL2irmDlPr3YdQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X11", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f8726fc56689a7b50c8f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f8726fc56689a7b50c8f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MSAqx4fYTL2irmDlPr3YdQ" + }, + "MStBVgsLRqeoum9-MxYS9Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.75fc0a3eb8750fd68023" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.75fc0a3eb8750fd68023" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MStBVgsLRqeoum9-MxYS9Q" + }, + "MTYbtZ3TQ7W9tSgz8T3oZQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3969da2059d70ade2ab6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3969da2059d70ade2ab6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MTYbtZ3TQ7W9tSgz8T3oZQ" + }, + "MTwumuYNTf6GeL2j3-2t-Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "build-signing", + "label": "build-signing-win32-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32-devedition" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'win32-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-win32-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/setup.exe", + "public/build/setup-stub.exe" + ], + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q", + "taskType": "build" + }, + { + "formats": [ + "sha2signcode", + "widevine" + ], + "paths": [ + "public/build/target.zip" + ], + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.devedition.win32-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win32-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.devedition.win32-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.win32-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.win32-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.devedition-l10n.win32-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.devedition-l10n.win32-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-win32-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "MTwumuYNTf6GeL2j3-2t-Q" + }, + "MV-UPLieQrmmk4JXRYdwcA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6783d9c8ade8c23c9bdb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6783d9c8ade8c23c9bdb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MV-UPLieQrmmk4JXRYdwcA" + }, + "MVFJ2YGURbuxPsA6Opvs-g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/firefox_ui_tests/functional.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster_mac.py", + "--tag", + "local", + "--e10s", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--tag", + "local", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.100b656d2880aecaa7a2" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.100b656d2880aecaa7a2" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-firefox-ui-functional-local-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "MVFJ2YGURbuxPsA6Opvs-g" + }, + "MWScvst2TQ2bS4XoKYFvGA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.28e379f206bd5125950d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.28e379f206bd5125950d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MWScvst2TQ2bS4XoKYFvGA" + }, + "MWZ-nABVTPWOeWXV1uxSSA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-fuzzing", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-fuzzing/debug", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Bf", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Fuzzing Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-fuzzing/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-fuzzing-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "fuzzing-debug", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "fuzzing", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-fuzzing-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-fuzzing-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-fuzzing-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-fuzzing-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-fuzzing-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-fuzzing/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "MWZ-nABVTPWOeWXV1uxSSA" + }, + "MZQ8DJf1RT6KN0lzs9jwkw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "8", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.33689e250465d58af615" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.33689e250465d58af615" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MZQ8DJf1RT6KN0lzs9jwkw" + }, + "MZUYPNxrTUSv0Z02qbbtJg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "MZUYPNxrTUSv0Z02qbbtJg" + }, + "MZg6PIPHTnixBbrS0Yd1Ug": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.aa0365e2b275bdab3038" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aa0365e2b275bdab3038" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MZg6PIPHTnixBbrS0Yd1Ug" + }, + "M_OHtqN5SbiFFsAOjZkyAw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9c8a4722ba3651497c0b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9c8a4722ba3651497c0b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "M_OHtqN5SbiFFsAOjZkyAw" + }, + "M_nyuXJsSnW8p1JhMPvLZg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.604f6c639fc9d1f5477a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.604f6c639fc9d1f5477a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "M_nyuXJsSnW8p1JhMPvLZg" + }, + "MeLSNMLqSm2GfXRBAZQV5g": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.553d12755d13415eaa31" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.553d12755d13415eaa31" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MeLSNMLqSm2GfXRBAZQV5g" + }, + "MiN3hVfJQ-u-wUP7gsuDfw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c5222c38d211e7616233" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c5222c38d211e7616233" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MiN3hVfJQ-u-wUP7gsuDfw" + }, + "MlqGnOyWQz2GKitv-wN7Jw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6b59e171462eb498d8aa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6b59e171462eb498d8aa" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MlqGnOyWQz2GKitv-wN7Jw" + }, + "MmtOavznRXuDKkJnTGDV_Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "21", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-21", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 21, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R21", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-21", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=21", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5a8ad9dd4dcb19ed8c21" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5a8ad9dd4dcb19ed8c21" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-21", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MmtOavznRXuDKkJnTGDV_Q" + }, + "MoeLsecxT26Bj7bm-MU6Hw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08b145fdd7a792b28708" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08b145fdd7a792b28708" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MoeLsecxT26Bj7bm-MU6Hw" + }, + "Mrin0Kp1SiaznF725M7uNg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=10" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-10", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Mrin0Kp1SiaznF725M7uNg" + }, + "MscSjtAdT8GpnogS3qw5dA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R16", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=16", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e868de586b5e294860ae" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e868de586b5e294860ae" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-16", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MscSjtAdT8GpnogS3qw5dA" + }, + "MshaE1fWQpK_nYIlHM0jYw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9194a7cea90ac6da4873" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9194a7cea90ac6da4873" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MshaE1fWQpK_nYIlHM0jYw" + }, + "MvOC-DuoTousKmjiFBFtaA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c543b307c9eb335e304e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c543b307c9eb335e304e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "MvOC-DuoTousKmjiFBFtaA" + }, + "MvrKSsWTT9uMT74ndG_WhQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7b0b6538df1ca4a308f3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7b0b6538df1ca4a308f3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "MvrKSsWTT9uMT74ndG_WhQ" + }, + "Mz725B8pT6eaPCjII8qINQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "39", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-39", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 39, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R39", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-39", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=39", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.be92dc7b1b2d2b104f75" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.be92dc7b1b2d2b104f75" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-39", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Mz725B8pT6eaPCjII8qINQ" + }, + "MzRZDgqvTuuJwNqlvaDQgA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "MzRZDgqvTuuJwNqlvaDQgA" + }, + "N0Xw3OKKTX2Yit7IXem3bA": { + "attributes": { + "always_target": false, + "build_platform": "win64-add-on-devel", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "mozilla-beta", + "mozilla-release", + "mozilla-esr45", + "maple" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-win64-add-on-devel/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64-add-on-devel" + }, + "symbol": "B", + "tier": 2 + } + }, + "metadata": { + "description": "Windows64 add-on-devel ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win64-add-on-devel/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win64.py --config builds\\taskcluster_sub_win64\\addondevel.py --config balrog\\production.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 10800, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win64-add-on-devel", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win64-add-on-devel", + "index.gecko.v2.maple.pushlog-id.343.firefox.win64-add-on-devel", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-add-on-devel", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win64-add-on-devel/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "N0Xw3OKKTX2Yit7IXem3bA" + }, + "N0fQ_0i3SxGadSifBsSRBw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.70c9106e3e2d152b5a27" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.70c9106e3e2d152b5a27" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "N0fQ_0i3SxGadSifBsSRBw" + }, + "N1fJqXMfR7m-fbN55MAXiA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X4", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b4182ba2ab8bb3f1654f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b4182ba2ab8bb3f1654f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "N1fJqXMfR7m-fbN55MAXiA" + }, + "N2-jBZASSX-8-FGBvSvkaQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "19", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-19", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 19, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R19", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-19", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=19", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08c1ac2b8378571a2c22" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08c1ac2b8378571a2c22" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-19", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "N2-jBZASSX-8-FGBvSvkaQ" + }, + "N2Ik_UNISSqjtZ21montjg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --total-chunk=7 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "N2Ik_UNISSqjtZ21montjg" + }, + "N40GuC7QRgGuR897GEajRg": { + "attributes": { + "always_target": false, + "build_platform": "win64-st-an", + "build_type": "debug", + "kind": "static-analysis", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/debug", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "S", + "tier": 1 + } + }, + "metadata": { + "description": "Win64 Static Analysis Debug (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "static-analysis-win64-st-an/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/static-analysis" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win64.py --config builds\\taskcluster_sub_win64\\clang_debug.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest" + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win64-st-an-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win64-st-an-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.win64-st-an-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-st-an-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/debug", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "N40GuC7QRgGuR897GEajRg" + }, + "N5nb2U6HQTqO3lB4jMblYg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.30593a175bfad1169234" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.30593a175bfad1169234" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "N5nb2U6HQTqO3lB4jMblYg" + }, + "N6RKDcvoS2a3kz3efW-i3g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5961032db98e82440bc9" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5961032db98e82440bc9" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "N6RKDcvoS2a3kz3efW-i3g" + }, + "N6VRQLejRhKsuuz7lABO7Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8407124fc13b6066a998" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8407124fc13b6066a998" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "N6VRQLejRhKsuuz7lABO7Q" + }, + "NAuoQ7isShqIJTK7sZAgrw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "25", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-25", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 25, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "25", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-25", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=25", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d9e05820218e79fb4165" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d9e05820218e79fb4165" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-25", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "NAuoQ7isShqIJTK7sZAgrw" + }, + "NBjkBvI3RLiGs5k-CCeVpA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=9" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1772c028f76bbea47df8" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1772c028f76bbea47df8" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-9", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "NBjkBvI3RLiGs5k-CCeVpA" + }, + "NCwwvootR-CbA2jQKY0Nyw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--enable-webrender", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fd431933125ea8003ca6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fd431933125ea8003ca6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NCwwvootR-CbA2jQKY0Nyw" + }, + "NE5w8CmUSNST0tcjYwYwGA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9acdfa45e3dd69ea9652" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9acdfa45e3dd69ea9652" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NE5w8CmUSNST0tcjYwYwGA" + }, + "NHAep5I8RDOSoV5lat7rxQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "NHAep5I8RDOSoV5lat7rxQ" + }, + "NJm7v30LRu6ytFdWwAhqNA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C1", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-crashtest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f19db40b9a7915ce57f2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f19db40b9a7915ce57f2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "NJm7v30LRu6ytFdWwAhqNA" + }, + "NJrvkpPfTHuwWnUxr9epig": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "NJrvkpPfTHuwWnUxr9epig" + }, + "NJwad3wiTWWpwJeWQlFvxA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-7", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "NJwad3wiTWWpwJeWQlFvxA" + }, + "NLZRjgN-R6GzmaPSfFygLA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "NLZRjgN-R6GzmaPSfFygLA" + }, + "NM2CsSSnQFWeJ23YnsLirg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6cee8950f1fd9f5f2913" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6cee8950f1fd9f5f2913" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-6", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "NM2CsSSnQFWeJ23YnsLirg" + }, + "NMEY-vk0S2eZUDOTz3S7Fw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "NMEY-vk0S2eZUDOTz3S7Fw" + }, + "NNZQ2ULdR9CzZ-w4Iog0Mg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-1", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "NNZQ2ULdR9CzZ-w4Iog0Mg" + }, + "NPel06PZQhCt4AxhzRdmrQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "NPel06PZQhCt4AxhzRdmrQ" + }, + "NQEHeOX7RZCvP7oxgJgtgA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ebcae01b2ebb20754c79" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ebcae01b2ebb20754c79" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "NQEHeOX7RZCvP7oxgJgtgA" + }, + "NRWm8mndTyCbCCljOin_GQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.602c703ce87bc3361175" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.602c703ce87bc3361175" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NRWm8mndTyCbCCljOin_GQ" + }, + "NS4iGEC5TWKpwBc9xhoBMQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=9" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c633162e71503bff47d9" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c633162e71503bff47d9" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-9", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "NS4iGEC5TWKpwBc9xhoBMQ" + }, + "NTGmqdLsRDC-niLzvhjP9g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4ca589962bf91ba0fdf6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4ca589962bf91ba0fdf6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NTGmqdLsRDC-niLzvhjP9g" + }, + "NUZzTyvjQ_KT0fbeEDINhA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=a11y --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=a11y" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-a11y", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "NUZzTyvjQ_KT0fbeEDINhA" + }, + "NVS3bA0qTqKY_T2UPW-8vA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7d0d582dbcf7811864d2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7d0d582dbcf7811864d2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "NVS3bA0qTqKY_T2UPW-8vA" + }, + "NVj1s8llQ5avSFpOD47laA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ce1c99875aa5b16b1002" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ce1c99875aa5b16b1002" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NVj1s8llQ5avSFpOD47laA" + }, + "NXgnLKV8RK6_W-XF836ztA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "h2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --headless --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "NXgnLKV8RK6_W-XF836ztA" + }, + "NY1zugKLReCM3nbIw6XlMg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "awsy", + "unittest_suite": "awsy", + "unittest_try_name": "awsy-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-awsy-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "awsy", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s", + "groupSymbol": "tc-SY-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "sy", + "tier": 1 + } + }, + "metadata": { + "description": "Are we slim yet ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-awsy-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--e10s", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "awsy/linux_config.py", + "MOZHARNESS_SCRIPT": "awsy_script.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.693cc424e5920420b41b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.693cc424e5920420b41b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-awsy-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "NY1zugKLReCM3nbIw6XlMg" + }, + "NYWsjii3R6-Ov6WEIhD0Mw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "NYWsjii3R6-Ov6WEIhD0Mw" + }, + "NZKG3PbSQG6-t7hfcrwmFQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn6", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6863f8b0628e11549a53" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6863f8b0628e11549a53" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "NZKG3PbSQG6-t7hfcrwmFQ" + }, + "N_Q7GurpRCOsfAH1-nonpA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R16", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=16", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c83e775db95a039a69d5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c83e775db95a039a69d5" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-16", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "N_Q7GurpRCOsfAH1-nonpA" + }, + "Na1iiMrsSnmNwif3iRfN6Q": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=10" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-10", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Na1iiMrsSnmNwif3iRfN6Q" + }, + "NbIEGJJhRJi99mrm2ItD8Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ff93d04beeebf0471c95" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ff93d04beeebf0471c95" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NbIEGJJhRJi99mrm2ItD8Q" + }, + "NbgSzuyeTD-S864Kztmpjg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--headless", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.32a53cf7f0b6effbb614" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.32a53cf7f0b6effbb614" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-marionette-headless-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NbgSzuyeTD-S864Kztmpjg" + }, + "NcN9Xf44QpaM1XG_49aUVQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.80321fedded6a1764b72" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.80321fedded6a1764b72" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NcN9Xf44QpaM1XG_49aUVQ" + }, + "NcsbgqMlRMC5MzzuxwQfnA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--gtest-suite=gtest", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b627a08033b72c0e6efe" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b627a08033b72c0e6efe" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-gtest", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "NcsbgqMlRMC5MzzuxwQfnA" + }, + "Ne1xir-DTEKx2ZU2RPbbvw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7a825ae3c10d09c3a933" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7a825ae3c10d09c3a933" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Ne1xir-DTEKx2ZU2RPbbvw" + }, + "NhwhtHrOTOG0TznFV0ud4Q": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "NhwhtHrOTOG0TznFV0ud4Q" + }, + "Nih6QHrqSauNe28tfar6lQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "31", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-31", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 31, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "31", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-31", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=31", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.352058ca150dabbd4379" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.352058ca150dabbd4379" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-31", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Nih6QHrqSauNe28tfar6lQ" + }, + "NlwJAhUKQbyCvQh0pQrFKQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-media-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "NlwJAhUKQbyCvQh0pQrFKQ" + }, + "NoWvETDmQGu12rs47WRa2Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-5", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "NoWvETDmQGu12rs47WRa2Q" + }, + "Nprl3QPRSQ6A5uPB0NSujQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Nprl3QPRSQ6A5uPB0NSujQ" + }, + "Nq6WuEDdR5-yGDItykdJDQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Nq6WuEDdR5-yGDItykdJDQ" + }, + "NqFysW63TLmNijJKHAE4hA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "NqFysW63TLmNijJKHAE4hA" + }, + "NqXjwhRUSa21wTq1Sict8Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=4" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d07499c476b5ee6ce57b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d07499c476b5ee6ce57b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NqXjwhRUSa21wTq1Sict8Q" + }, + "NqwguBKUR-ywvIyD4LUbow": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.572e55c4d3ee6f0a4062" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.572e55c4d3ee6f0a4062" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NqwguBKUR-ywvIyD4LUbow" + }, + "Nu16JrhFTOiVQhtnReo4ZA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Nu16JrhFTOiVQhtnReo4ZA" + }, + "NuBJrzzRQTCsPeNeNcMT7w": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8ff1a8cf882f37ec910b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8ff1a8cf882f37ec910b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NuBJrzzRQTCsPeNeNcMT7w" + }, + "NvMtJPrrSFGLP15AOQNqcA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a27f7ea431a7376e9deb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a27f7ea431a7376e9deb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "NvMtJPrrSFGLP15AOQNqcA" + }, + "NvvVDFSySVq4ZGWua5jesg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dd8d195b9023c2655901" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dd8d195b9023c2655901" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-webgl-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "NvvVDFSySVq4ZGWua5jesg" + }, + "Nw71jUEiSO-juni4MBdGFw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=11" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-11", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Nw71jUEiSO-juni4MBdGFw" + }, + "O-h-U9RLQcGsPT6wfGYK4w": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "O-h-U9RLQcGsPT6wfGYK4w" + }, + "O-he0sLFSnqL6pxQTNTG9Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.370abd901c43265b1bd2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.370abd901c43265b1bd2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "O-he0sLFSnqL6pxQTNTG9Q" + }, + "O-iDoaEDTsmhXi7mMLjadw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0d36f82b0916852bc62a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0d36f82b0916852bc62a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "O-iDoaEDTsmhXi7mMLjadw" + }, + "O1JxrTXERwClhy3tfCou1Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a00841f505b21c5b373d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a00841f505b21c5b373d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "O1JxrTXERwClhy3tfCou1Q" + }, + "O6EL21_dTZae_Zv14DNGXA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.789dc806c83b7fdde118" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.789dc806c83b7fdde118" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "O6EL21_dTZae_Zv14DNGXA" + }, + "O6fvawt7Rpa5FtgHu4q6gw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=crashtest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-crashtest-e10s", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "O6fvawt7Rpa5FtgHu4q6gw" + }, + "O6qi2C5oSX6swz4XSMEL4g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5e99165554f02cbf4160" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5e99165554f02cbf4160" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "O6qi2C5oSX6swz4XSMEL4g" + }, + "O6zaW1RFTiuFU5lpQmMksg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "rc3", + "tier": 2 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-robocop-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.be8d647ce501a0d68206" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.be8d647ce501a0d68206" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "O6zaW1RFTiuFU5lpQmMksg" + }, + "OA5VNiY1QneMQMYCk2hfdg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b4e86eccbfa725a25977" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b4e86eccbfa725a25977" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OA5VNiY1QneMQMYCk2hfdg" + }, + "OCDa8I4ORWCkvlPnApLMaw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a4378db2e7167f718068" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a4378db2e7167f718068" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OCDa8I4ORWCkvlPnApLMaw" + }, + "OGKEqdoQQGu8JH68YmjlYw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "upload-symbols", + "label": "build-win32-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win32-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "YbFzYsrlQnCuiSGlgfZTiQ", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-win32-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "OGKEqdoQQGu8JH68YmjlYw" + }, + "OKkra9-STUKQ8h_BjzrQ2Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R12", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ddcfd68efdc62299a656" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ddcfd68efdc62299a656" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-12", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "OKkra9-STUKQ8h_BjzrQ2Q" + }, + "ONQhMi-wT0ObWVqlE39qMA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a6ae77afaa4430cde815" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a6ae77afaa4430cde815" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ONQhMi-wT0ObWVqlE39qMA" + }, + "OOsC6_g-QmSl_7rDvjbFJg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cppunittest-suite=cppunittest", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--cppunittest-suite=cppunittest" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2e025d54d97d30589bf1" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2e025d54d97d30589bf1" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-cppunit", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "OOsC6_g-QmSl_7rDvjbFJg" + }, + "OQ6CAcnqTf2tOC36ySH1zw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-media-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "OQ6CAcnqTf2tOC36ySH1zw" + }, + "ORuvGQPPR3iJpEE1kNs88w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "ORuvGQPPR3iJpEE1kNs88w" + }, + "OSNaxbheRMijkOd7wjUluw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "OSNaxbheRMijkOd7wjUluw" + }, + "OSat8lCXRDevhtCIq5RCxg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.efff2a6367323d62d95a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.efff2a6367323d62d95a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "OSat8lCXRDevhtCIq5RCxg" + }, + "OVyCptwWQbqUAMgEF147lA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-3", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "OVyCptwWQbqUAMgEF147lA" + }, + "OVyN02e8RW-NjrdtUJuOZg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8f26c00705f505d4b78a" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8f26c00705f505d4b78a" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-webgl-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "OVyN02e8RW-NjrdtUJuOZg" + }, + "OY9aHc09Q6iMK0X4qgojxg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.898eb602871ed58f7efa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.898eb602871ed58f7efa" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "OY9aHc09Q6iMK0X4qgojxg" + }, + "OZHXDV5JSoC3Qh7Wgmk3qA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.28ee3c1df8a2747c49b4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.28ee3c1df8a2747c49b4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OZHXDV5JSoC3Qh7Wgmk3qA" + }, + "OabhAhBZQwOH2wd22dwBsg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e5a3f7253612abbc2fc2" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e5a3f7253612abbc2fc2" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "OabhAhBZQwOH2wd22dwBsg" + }, + "OcQBv0-MS1m8xiBvCIK_xQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.edff23da67baa5abf724" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.edff23da67baa5abf724" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-5", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "OcQBv0-MS1m8xiBvCIK_xQ" + }, + "Oe33rbJvSC-iL4tYZdHwcQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.aeca63f8bd7b16129c5d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aeca63f8bd7b16129c5d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-firefox-ui-functional-remote-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Oe33rbJvSC-iL4tYZdHwcQ" + }, + "OesAaRB4TwGt7oxd71pgtA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-8", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "OesAaRB4TwGt7oxd71pgtA" + }, + "Of9qb-fVQYaFanVxGyhGwQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/firefox_ui_tests/functional.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster_mac.py", + "--tag", + "local", + "--e10s", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--tag", + "local", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.529f033f6d1229cc8188" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.529f033f6d1229cc8188" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-firefox-ui-functional-local-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Of9qb-fVQYaFanVxGyhGwQ" + }, + "OfDDBdjERmK4tl53QAo88Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag local --e10s --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag local --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-firefox-ui-functional-local-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "OfDDBdjERmK4tl53QAo88Q" + }, + "OfNaIcJWSjmkZdh2vKXXJg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.384f67863a1634580671" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.384f67863a1634580671" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "OfNaIcJWSjmkZdh2vKXXJg" + }, + "OfrngI4eRcGXH_hJkpa_lQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b7171814a3b5af534485" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b7171814a3b5af534485" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OfrngI4eRcGXH_hJkpa_lQ" + }, + "OfzEN6vkSRCqaG4P-CSi9w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "OfzEN6vkSRCqaG4P-CSi9w" + }, + "Og1uSq2PTaiP9J3QS6GMhw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2f44e086cdae9e821fee" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2f44e086cdae9e821fee" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Og1uSq2PTaiP9J3QS6GMhw" + }, + "OjLBHGEST6mAMrPKdXE7kQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f6338416f6605e26e91b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f6338416f6605e26e91b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OjLBHGEST6mAMrPKdXE7kQ" + }, + "Ol-cLF7AQFKz0yha8Rw5qQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ace1e701009f37556069" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ace1e701009f37556069" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Ol-cLF7AQFKz0yha8Rw5qQ" + }, + "OnMCU1UnQhSXxYBDFQAO9Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6fe6f44a9a0cd26a6598" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6fe6f44a9a0cd26a6598" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OnMCU1UnQhSXxYBDFQAO9Q" + }, + "Ophl_m7tTgSGayZ2YDbKlA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Ophl_m7tTgSGayZ2YDbKlA" + }, + "OqTZXL4yQjii0fh8pKF4dQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e30750bbe14e066b8171" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e30750bbe14e066b8171" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OqTZXL4yQjii0fh8pKF4dQ" + }, + "OsbyvjPNRdSD2MEqvqN1LQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a066c427b7e4fd3f44ed" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a066c427b7e4fd3f44ed" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OsbyvjPNRdSD2MEqvqN1LQ" + }, + "Ou57Sj3XTbao6kIEm_yS0A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C3", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-crashtest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.220cad5b20cc53605e90" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.220cad5b20cc53605e90" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Ou57Sj3XTbao6kIEm_yS0A" + }, + "Ougi0bPORn2EFn0P-74PPg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.95d871eb8b471615d999" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.95d871eb8b471615d999" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Ougi0bPORn2EFn0P-74PPg" + }, + "OvVlIJ3DQB6kmtRm6RZ89Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.44a2b8079275c8b3bc99" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.44a2b8079275c8b3bc99" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "OvVlIJ3DQB6kmtRm6RZ89Q" + }, + "OwBapzdrRpmm0paqrIr4GQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA", + "build-signing": "QlhUoxofTQaNhfatcZPM3w" + }, + "kind": "test", + "label": "test-windows10-64/debug-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QlhUoxofTQaNhfatcZPM3w", + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QlhUoxofTQaNhfatcZPM3w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --xpcshell-suite=xpcshell" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-xpcshell", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "OwBapzdrRpmm0paqrIr4GQ" + }, + "OwL-uekWQJG319pZB6sx2g": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "OwL-uekWQJG319pZB6sx2g" + }, + "OwiUd5_6SZWYHA9_aKuE4A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e642c02e0d888e481e4b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e642c02e0d888e481e4b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "OwiUd5_6SZWYHA9_aKuE4A" + }, + "OxEW7P9gRbmDbdTjbe83sg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R13", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.01655c2b5b9d60e78479" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.01655c2b5b9d60e78479" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-13", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "OxEW7P9gRbmDbdTjbe83sg" + }, + "Oxvc_yvjT8eBtT5DDCXjaw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f02c997aeff43c0bce8f" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f02c997aeff43c0bce8f" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-chrome-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Oxvc_yvjT8eBtT5DDCXjaw" + }, + "OzNUlwswRdm6X_jxQeUXfg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d0bec38119f7f0525b10" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d0bec38119f7f0525b10" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "OzNUlwswRdm6X_jxQeUXfg" + }, + "P-0oivY4Sh6giJMP4nXn7A": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "macosx64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=6" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3715e7dc8bf97b84ea63" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3715e7dc8bf97b84ea63" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-6", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "P-0oivY4Sh6giJMP4nXn7A" + }, + "P0Exg1f1QdSGkhVQVlAOQw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.969444b250081720ea8b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.969444b250081720ea8b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "P0Exg1f1QdSGkhVQVlAOQw" + }, + "P0kdUgtOQMOfLA1sYIxQUA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=a11y --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=a11y" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-a11y", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "P0kdUgtOQMOfLA1sYIxQUA" + }, + "P2RDXAG6SO-jecilIadlTw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-5", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "P2RDXAG6SO-jecilIadlTw" + }, + "P4fV6_sIRbaB1wx8qiJ0ng": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition" + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-devedition-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 devedition Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-devedition-nightly-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "devedition", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py disable_signing.py balrog/production.py taskcluster_nightly.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.devedition.linux64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.devedition.linux64-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.devedition-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.latest.devedition-l10n.linux64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-devedition-nightly-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "P5-m2_KZSZGHc_NJtr6u0A": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --headless --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --headless --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-marionette-headless-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "P5-m2_KZSZGHc_NJtr6u0A" + }, + "P5K9ylZzR_-ulyZ8PORaDg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-6", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "P5K9ylZzR_-ulyZ8PORaDg" + }, + "P8m5LG3tSc2h0-E8h_5LqA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.959526105969d15ce245" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.959526105969d15ce245" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "P8m5LG3tSc2h0-E8h_5LqA" + }, + "P9JZRKnJTiyCqAKCHFOduw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "P9JZRKnJTiyCqAKCHFOduw" + }, + "PA-o6lM6SXiAfPOgG-LgQQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5fee32eea84707ece0f6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5fee32eea84707ece0f6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PA-o6lM6SXiAfPOgG-LgQQ" + }, + "PAoUc_m-RBmE7uBwFjQHPA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "23", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-23", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 23, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "23", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-23", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=23", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d207111d159a584ee3c6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d207111d159a584ee3c6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-23", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PAoUc_m-RBmE7uBwFjQHPA" + }, + "PBV-Iia-Sc-e1Pjvg0eLDA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8d0ad337af94c55c3165" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8d0ad337af94c55c3165" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PBV-Iia-Sc-e1Pjvg0eLDA" + }, + "PD-0VyyhTrWu1dFVmqDiVg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3ceb9d1ce651056320bf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3ceb9d1ce651056320bf" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PD-0VyyhTrWu1dFVmqDiVg" + }, + "PDiIur31SauadGGlIF10jQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.03566d8f828980bdeacf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.03566d8f828980bdeacf" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PDiIur31SauadGGlIF10jQ" + }, + "PFyhiqKdTFWXSkZFQEoKZw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "PFyhiqKdTFWXSkZFQEoKZw" + }, + "PH6Twy8FQKKTUjazO2lTkg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "PH6Twy8FQKKTUjazO2lTkg" + }, + "PHgBFkV2QQGhwpSOX8g66w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "34", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-34", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 34, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "34", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-34", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=34", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.13183b91d91f7b6f1348" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.13183b91d91f7b6f1348" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-34", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PHgBFkV2QQGhwpSOX8g66w" + }, + "PIXiWjkyQweB6xItDBLTpw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--tag", + "local", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.30e4dea411a4b227345a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.30e4dea411a4b227345a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-firefox-ui-functional-local-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PIXiWjkyQweB6xItDBLTpw" + }, + "PIfjsMuHSJ-5D2hyIlutLw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "PIfjsMuHSJ-5D2hyIlutLw" + }, + "PLRJjdGHRaWQNDLwAx1hyw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--tag", + "local", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9d185e16b4497734875d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9d185e16b4497734875d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-firefox-ui-functional-local-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PLRJjdGHRaWQNDLwAx1hyw" + }, + "PMH5WBWuQxqKZZ_2N4SR3g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "11", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.61b3dad8f2dbbe1560a9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.61b3dad8f2dbbe1560a9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PMH5WBWuQxqKZZ_2N4SR3g" + }, + "PMwopatXRSePWS6IQSUPkg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e6f353b06669b1dda067" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e6f353b06669b1dda067" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PMwopatXRSePWS6IQSUPkg" + }, + "PP2iJRoTSgqt6EX7twzMZg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "PP2iJRoTSgqt6EX7twzMZg" + }, + "PPJxYDTHQ3qVVl3bzKG8sw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a7ab4030cf36546b173c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a7ab4030cf36546b173c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PPJxYDTHQ3qVVl3bzKG8sw" + }, + "PPTaVcg0TBSebC7Kxl8jVw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c40d2533970814f26c90" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c40d2533970814f26c90" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PPTaVcg0TBSebC7Kxl8jVw" + }, + "PPkSmXPRRAaNppV38hDJ3Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8dc6c47b1b33527ba8fe" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8dc6c47b1b33527ba8fe" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PPkSmXPRRAaNppV38hDJ3Q" + }, + "PRpiHFglRVWRVRMdCFOWGQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a30c135f4d84d49c1e7d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a30c135f4d84d49c1e7d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PRpiHFglRVWRVRMdCFOWGQ" + }, + "PRqmlY1mRSCNVb65uoeWIw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a39b46fcb8f2f5cc9d68" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a39b46fcb8f2f5cc9d68" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PRqmlY1mRSCNVb65uoeWIw" + }, + "PSpnVzLTRrGBCrvYZdDbeQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a9cafc6b0ced967998d7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a9cafc6b0ced967998d7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PSpnVzLTRrGBCrvYZdDbeQ" + }, + "PTAHODELR4SZ2IhD8h3w8A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "C2", + "tier": 2 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.efe1b3d8b0ac0ee00e5c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.efe1b3d8b0ac0ee00e5c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PTAHODELR4SZ2IhD8h3w8A" + }, + "PUQrqSy3SeaT6CRf5lJsFA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e5edfa81926f18ba9c02" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e5edfa81926f18ba9c02" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PUQrqSy3SeaT6CRf5lJsFA" + }, + "PV4mtZwTRe-i5RuFYb3WDg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.149067b22f97036067d6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.149067b22f97036067d6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PV4mtZwTRe-i5RuFYb3WDg" + }, + "PXZeZazDQu-9gGyiMUHFTg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests-wdspec", + "unittest_suite": "web-platform-tests-wdspec", + "unittest_try_name": "web-platform-tests-wdspec-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-wdspec-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-wdspec", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Wd", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-wdspec-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.98e85d4685f510d47495" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.98e85d4685f510d47495" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-wdspec-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PXZeZazDQu-9gGyiMUHFTg" + }, + "P_9b6I3LTd6-7gOOUfZQ3w": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "h4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --headless --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "P_9b6I3LTd6-7gOOUfZQ3w" + }, + "PbEyQbiwTZ63N9nn0EFE7w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "29", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-29", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 29, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R29", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-29", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=29", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b357fb8499071db211ac" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b357fb8499071db211ac" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-29", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PbEyQbiwTZ63N9nn0EFE7w" + }, + "PbdjabkjQWeaFh_hV4o0lw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5962503f1a1198b359e4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5962503f1a1198b359e4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PbdjabkjQWeaFh_hV4o0lw" + }, + "Pc47HdkuQVKTub-0suHZLQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Pc47HdkuQVKTub-0suHZLQ" + }, + "PeFCUh3rSn2_7zE7i_qGtA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "PeFCUh3rSn2_7zE7i_qGtA" + }, + "PfUnzfeeR9WqMUWLiyiKyQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d35a4a2970bbc5b9dc5a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d35a4a2970bbc5b9dc5a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PfUnzfeeR9WqMUWLiyiKyQ" + }, + "Pfc6jSplSA6525UAnl6KRg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.433f3f5ac5c85ed627cd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.433f3f5ac5c85ed627cd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Pfc6jSplSA6525UAnl6KRg" + }, + "PfnkbfB-RJyhqbp4bmNt-A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1ae8f523c79fc7716ce6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1ae8f523c79fc7716ce6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PfnkbfB-RJyhqbp4bmNt-A" + }, + "Pfwl0tChSFuMK9yhAZKfeg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=10" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-10", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Pfwl0tChSFuMK9yhAZKfeg" + }, + "Pg42P0t-RxCdkHttKahDTg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=a11y --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=a11y" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-a11y", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Pg42P0t-RxCdkHttKahDTg" + }, + "PgOo-vTzR8G6K1MNLgWORQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=16", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.59706a2dedc1b624db6f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.59706a2dedc1b624db6f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PgOo-vTzR8G6K1MNLgWORQ" + }, + "Phw6-B6bQ4qXwkvc8qERUg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Phw6-B6bQ4qXwkvc8qERUg" + }, + "PjIbiQ7OTQi924x1hbZWzg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c0bd9dcc283785f6dc7d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c0bd9dcc283785f6dc7d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PjIbiQ7OTQi924x1hbZWzg" + }, + "PjbqkY3cQR2QVC91NmMGFQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/firefox_ui_tests/functional.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster.py", + "--cfg", + "mozharness/configs/firefox_ui_tests/taskcluster_mac.py", + "--tag", + "remote", + "--e10s", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--tag", + "remote", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6a8ffd82fa120cb94db5" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6a8ffd82fa120cb94db5" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-firefox-ui-functional-remote-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "PjbqkY3cQR2QVC91NmMGFQ" + }, + "PoizfjIOQRGtFi3NHYo-1A": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.52f32500aa424239b608" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.52f32500aa424239b608" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PoizfjIOQRGtFi3NHYo-1A" + }, + "PpEGjjplTASDI_c6lVIG1w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.de473ede61709652f65c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.de473ede61709652f65c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PpEGjjplTASDI_c6lVIG1w" + }, + "Prioz25FTsSuWli7v4zS0A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e3881534cda921abdb60" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e3881534cda921abdb60" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Prioz25FTsSuWli7v4zS0A" + }, + "PuMtx7v1TQuT4Dt9pIKDkA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "14", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=14", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7f5979419dd1b6602f1a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7f5979419dd1b6602f1a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "PuMtx7v1TQuT4Dt9pIKDkA" + }, + "PvDlQKnxSzSzgvf02pXKWw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1413e56d7573f634a057" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1413e56d7573f634a057" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "PvDlQKnxSzSzgvf02pXKWw" + }, + "Pvb7JqImSTmGA-II14ASPQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "19", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-19", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 19, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "19", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-19", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=19", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.87226a2cdf0c392bf471" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.87226a2cdf0c392bf471" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-19", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Pvb7JqImSTmGA-II14ASPQ" + }, + "Pww7iVDTRWCZl2szkpWbfA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag remote --e10s --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag remote --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-firefox-ui-functional-remote-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Pww7iVDTRWCZl2szkpWbfA" + }, + "PzYHDMDDTo-vvgo-xywwVw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --cppunittest-suite=cppunittest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-cppunit", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "PzYHDMDDTo-vvgo-xywwVw" + }, + "Q3S6daJoQBCqiLZo7vOnMA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag remote --e10s --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag remote --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-firefox-ui-functional-remote-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Q3S6daJoQBCqiLZo7vOnMA" + }, + "Q5dz2Em0TEG7QqXjl-Xk1A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.67af3b653cdd3c6c1e43" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.67af3b653cdd3c6c1e43" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Q5dz2Em0TEG7QqXjl-Xk1A" + }, + "Q7zP9GfPR_aa_ei1sqK36Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e6e83a0ac682a0d98299" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e6e83a0ac682a0d98299" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Q7zP9GfPR_aa_ei1sqK36Q" + }, + "Q9ryw0wXTsSWvTQ7LNggJA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08d648608ec7b3089c0a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08d648608ec7b3089c0a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Q9ryw0wXTsSWvTQ7LNggJA" + }, + "QA3FPAOlSIWy11OmPhEneg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.43a91e61224f181c0838" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.43a91e61224f181c0838" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-5", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "QA3FPAOlSIWy11OmPhEneg" + }, + "QApTcNzFQKGAfvMIp0bMRA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q", + "build-signing": "MTwumuYNTf6GeL2j3-2t-Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q", + "MTwumuYNTf6GeL2j3-2t-Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/MTwumuYNTf6GeL2j3-2t-Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-xpcshell", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "QApTcNzFQKGAfvMIp0bMRA" + }, + "QCrii-sJQc-c3ezGk3Eg4Q": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "QCrii-sJQc-c3ezGk3Eg4Q" + }, + "QCu093clQueD49xV7fGHlg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1acefa6829aa64dae0e3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1acefa6829aa64dae0e3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "QCu093clQueD49xV7fGHlg" + }, + "QEZ924imSW-gO5z6uyEH-g": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "QEZ924imSW-gO5z6uyEH-g" + }, + "QF2it0r8Scqwto6mJPeikA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-media-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-media-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a3335b5cb35726834c4f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a3335b5cb35726834c4f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-media-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QF2it0r8Scqwto6mJPeikA" + }, + "QFwNYXYCRiCY1nnX-rdwWA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn8", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ce5262f41f37372b9584" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ce5262f41f37372b9584" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QFwNYXYCRiCY1nnX-rdwWA" + }, + "QGAuz5RcTY23czAoye22Gw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "QGAuz5RcTY23czAoye22Gw" + }, + "QGDiAIC_RY-RcTzKWdCuVA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4f439e983499349052f3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4f439e983499349052f3" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QGDiAIC_RY-RcTzKWdCuVA" + }, + "QGrOVcIHSJSGrw1tdlo3tw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "QGrOVcIHSJSGrw1tdlo3tw" + }, + "QIRVASzTSGi3PKQxGbhDLw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "build-signing", + "label": "build-signing-linux64-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'linux64-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-linux64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "gpg", + "widevine" + ], + "paths": [ + "public/build/target.tar.bz2" + ], + "taskId": "P4fV6_sIRbaB1wx8qiJ0ng", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.devedition.linux64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.devedition.linux64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.linux64-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.devedition-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.devedition-l10n.linux64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:gpg", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-linux64-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "QIRVASzTSGi3PKQxGbhDLw" + }, + "QIwrkNO2TqStuI32poJbVQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-gpu-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "QIwrkNO2TqStuI32poJbVQ" + }, + "QKMD09qmTK6mF1ZJ8448HQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X5", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9a648dbfef7e27a5f973" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9a648dbfef7e27a5f973" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QKMD09qmTK6mF1ZJ8448HQ" + }, + "QQejwG1tQ7u15qaiU5h4pQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "9", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3721cd2e3dec270470f3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3721cd2e3dec270470f3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "QQejwG1tQ7u15qaiU5h4pQ" + }, + "QT8g6MxOSR6A2e6fmWug0A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "20", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-20", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 20, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R20", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-20", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=20", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4e87ff9c558ef123bf32" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4e87ff9c558ef123bf32" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-20", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QT8g6MxOSR6A2e6fmWug0A" + }, + "QVYcHPXGTVqV8_jRN0ZrMg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--gtest-suite=gtest", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--gtest-suite=gtest" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cdfd2e70312c972286a1" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cdfd2e70312c972286a1" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-gtest", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "QVYcHPXGTVqV8_jRN0ZrMg" + }, + "QWsKDgTwTyCSNDHfFm_t_A": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a7a8961e779a3d8b2d26" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a7a8961e779a3d8b2d26" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QWsKDgTwTyCSNDHfFm_t_A" + }, + "QZ70ag-oQ0qQVvBTiSZE8g": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "QZ70ag-oQ0qQVvBTiSZE8g" + }, + "QaCYlq_HQ5eltCgM6fSCRw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f454a2a516724814c6d3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f454a2a516724814c6d3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "QaCYlq_HQ5eltCgM6fSCRw" + }, + "QaEN_xo2TzucNgoApUcSFg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R14", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=14", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.acce7bd2c3401bcde486" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.acce7bd2c3401bcde486" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-14", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QaEN_xo2TzucNgoApUcSFg" + }, + "QdKYiAd4RNWMq_gRmsFgpA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "20", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-20", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 20, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "20", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-20", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=20", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4bfe83a7afd76c9115a7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4bfe83a7afd76c9115a7" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-20", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QdKYiAd4RNWMq_gRmsFgpA" + }, + "Qe-vR71jSXqnkxZyP5SX3g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e736ef048a55a02fae78" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e736ef048a55a02fae78" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Qe-vR71jSXqnkxZyP5SX3g" + }, + "QeSFmuysQ36QshcrjoL_Qw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.73cfb82d30ac03fad7c7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.73cfb82d30ac03fad7c7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "QeSFmuysQ36QshcrjoL_Qw" + }, + "QefsEua5RU6sw3_P6OIH6w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --total-chunk=7 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "QefsEua5RU6sw3_P6OIH6w" + }, + "Qk5a1Ub6QHKajBTryskAAg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4b0700f4b717749ff005" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4b0700f4b717749ff005" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Qk5a1Ub6QHKajBTryskAAg" + }, + "QldU2AmxTY6EfOpNA7ynpw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "QldU2AmxTY6EfOpNA7ynpw" + }, + "QlhUoxofTQaNhfatcZPM3w": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "kind": "build-signing", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "signed": true + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "build-signing", + "label": "build-signing-win64/debug", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "Bs", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'win64/debug' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-win64/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/setup.exe" + ], + "taskId": "QyB-tN8tRqWvGDTTYWBSOA", + "taskType": "build" + }, + { + "formats": [ + "sha2signcode", + "widevine" + ], + "paths": [ + "public/build/target.zip" + ], + "taskId": "QyB-tN8tRqWvGDTTYWBSOA", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-win64/debug" + }, + "workerType": "depsigning" + }, + "task_id": "QlhUoxofTQaNhfatcZPM3w" + }, + "QnTDySDaTjulTMi0WgCiqQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7e4b5f7bd9a1b1680016" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7e4b5f7bd9a1b1680016" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QnTDySDaTjulTMi0WgCiqQ" + }, + "Qo9T3JaQSmq8t5BHo7hCpw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Qo9T3JaQSmq8t5BHo7hCpw" + }, + "QoBuR8RIShOsRMv4YohUzQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "17", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-17", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 17, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "17", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-17", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=17", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.11e71f78075e93536840" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.11e71f78075e93536840" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-17", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QoBuR8RIShOsRMv4YohUzQ" + }, + "QoFyKBgERbCQ3qoGlv6Sgg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c757603b3d8e21182800" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c757603b3d8e21182800" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QoFyKBgERbCQ3qoGlv6Sgg" + }, + "Qq9aY5kNQCKyd1wX5YdTeQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cbb866c52aad0136c26c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cbb866c52aad0136c26c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Qq9aY5kNQCKyd1wX5YdTeQ" + }, + "QsbYT74CTbu5sJ2woGuP0Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bbb1e0b8a1e9d1d6f15e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bbb1e0b8a1e9d1d6f15e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "QsbYT74CTbu5sJ2woGuP0Q" + }, + "Qt2UhGJlQ3qNC4F5BvK-qg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a3fcc6bd21aacd75db14" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a3fcc6bd21aacd75db14" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Qt2UhGJlQ3qNC4F5BvK-qg" + }, + "QwGw7oOSTzOQm-As7MTa0A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a5345b48ceef7aac1601" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a5345b48ceef7aac1601" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QwGw7oOSTzOQm-As7MTa0A" + }, + "QwfEj4tTQs6AgL0z2bpofQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C4", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d1a2fe266b81ef965aa7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d1a2fe266b81ef965aa7" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "QwfEj4tTQs6AgL0z2bpofQ" + }, + "QxJnnUYASayAT5W8yStBrg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "QxJnnUYASayAT5W8yStBrg" + }, + "QyB-tN8tRqWvGDTTYWBSOA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-win64/debug", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Win64 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win64/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win64.py --config builds\\taskcluster_sub_win64\\debug.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win64-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win64-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.win64-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win64/debug", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "QzIjWCy_Sg-7ii5GlrWmpA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.26504966bac5895dac9a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.26504966bac5895dac9a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "QzIjWCy_Sg-7ii5GlrWmpA" + }, + "R-UHiKA_ReuEBY6UdfkZpQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.41309bc4d9d55b1a9af8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.41309bc4d9d55b1a9af8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "R-UHiKA_ReuEBY6UdfkZpQ" + }, + "R02XQGJcR3u-k1gk3U4YAA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5261cfee683ce05626e1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5261cfee683ce05626e1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "R02XQGJcR3u-k1gk3U4YAA" + }, + "R0llc1I6Sze_AJ46Q_7sqA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.52d4c3219e4c45a4b325" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.52d4c3219e4c45a4b325" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "R0llc1I6Sze_AJ46Q_7sqA" + }, + "R1jh1YbjSDyhBeDBuJQOyQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4adf7d0d29e80504f04f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4adf7d0d29e80504f04f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "R1jh1YbjSDyhBeDBuJQOyQ" + }, + "R1rQDJJ2RDW0KEOe1KC08w": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dec9c5860cdbac580a1b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dec9c5860cdbac580a1b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "R1rQDJJ2RDW0KEOe1KC08w" + }, + "R2hmFqOJTt6z8BebDlCAkA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4c724815f0c13aa50ba1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4c724815f0c13aa50ba1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "R2hmFqOJTt6z8BebDlCAkA" + }, + "R30qUm8pReSzk0OILqUzLg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg", + "build-signing": "LmafDvzCSiS4f5wiMFn0KA", + "repackage": "WmYzMgvPRHehn5NDJfcdnQ" + }, + "kind": "repackage-signing", + "label": "repackage-signing-linux-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "IIQOnLdoTueU9hBgwCPS7Q", + "LmafDvzCSiS4f5wiMFn0KA", + "WmYzMgvPRHehn5NDJfcdnQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'linux-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-linux-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "WmYzMgvPRHehn5NDJfcdnQ", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux-devedition-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:mar_sha384" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-linux-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "R30qUm8pReSzk0OILqUzLg" + }, + "R4iGRk9bT1aBc5XJqdui0w": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2afbc27efff18da045f4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2afbc27efff18da045f4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "R4iGRk9bT1aBc5XJqdui0w" + }, + "R7g5J5gRS-yFZsZqDn2PXA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "R7g5J5gRS-yFZsZqDn2PXA" + }, + "R8TvOlIxR3SVxKMgZYKa_w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.40f807244e2e2f30a3d2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.40f807244e2e2f30a3d2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "R8TvOlIxR3SVxKMgZYKa_w" + }, + "R9H9MZKzT7OPi-CkYAVbEA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9a5acfae67c05d3b2f86" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9a5acfae67c05d3b2f86" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "R9H9MZKzT7OPi-CkYAVbEA" + }, + "RAEJ53UmSFa0ZL08PotxOg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=10" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-10", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "RAEJ53UmSFa0ZL08PotxOg" + }, + "RCGCWWhmTjGtLWm_ObVUOQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "RCGCWWhmTjGtLWm_ObVUOQ" + }, + "RCW4sugmTfuD7cYyl7vK1Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2084a6e8f89eccc4619c" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2084a6e8f89eccc4619c" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-5", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "RCW4sugmTfuD7cYyl7vK1Q" + }, + "RCmx8bzpQgKgSpALqiz46Q": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-media-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "mda", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-media-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-media-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "RCmx8bzpQgKgSpALqiz46Q" + }, + "RFN-jFHtSIeX-xhGWbLvxg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5f32c814e2ae4c07dd62" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5f32c814e2ae4c07dd62" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RFN-jFHtSIeX-xhGWbLvxg" + }, + "RFmn_poTSgOt406nNyBo1A": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "RFmn_poTSgOt406nNyBo1A" + }, + "RG9AWzzHRaasWobN6N82_A": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-media-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "RG9AWzzHRaasWobN6N82_A" + }, + "RHk0I1MzS5uwhK5np5v90Q": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "RHk0I1MzS5uwhK5np5v90Q" + }, + "RIHzqfRBSlCjjC8GULL-Ew": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-3", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "RIHzqfRBSlCjjC8GULL-Ew" + }, + "RKdkPOOJT1u_keKw-MHbSA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-gpu", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "gpu", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-gpu", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-plain-gpu", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.340b4e64c4daf6099745" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.340b4e64c4daf6099745" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-gpu", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "RKdkPOOJT1u_keKw-MHbSA" + }, + "RL6xdy4vQSie7O-oNpSIDg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-gpu-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "RL6xdy4vQSie7O-oNpSIDg" + }, + "RMLtIze1S4WaSQP2ktXAGQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9eb9428204d205fd7a60" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9eb9428204d205fd7a60" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RMLtIze1S4WaSQP2ktXAGQ" + }, + "RNaflRRES5Kw54aSfm-zgA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "h5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --headless --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "RNaflRRES5Kw54aSfm-zgA" + }, + "RST6RfblSs6bj8s2ytejRw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "RST6RfblSs6bj8s2ytejRw" + }, + "RSvGc4rkSY2AWUu0TnZFmA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.69b1a0a799b5680c2a7d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.69b1a0a799b5680c2a7d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RSvGc4rkSY2AWUu0TnZFmA" + }, + "RT1pyXIfRwKe8MsaUeu4Ew": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fb9ae124457b943e4f02" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fb9ae124457b943e4f02" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RT1pyXIfRwKe8MsaUeu4Ew" + }, + "RVIBKDX9QuCmiaXUer24Jw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-4", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "RVIBKDX9QuCmiaXUer24Jw" + }, + "RVh-O4smR6-T-KncJK_Q5Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d7ac1fdfb05018483fc5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d7ac1fdfb05018483fc5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RVh-O4smR6-T-KncJK_Q5Q" + }, + "RWQd0MIzT6ideyLNY8ol-Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.739905bf447027a777bc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.739905bf447027a777bc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RWQd0MIzT6ideyLNY8ol-Q" + }, + "RY9TJySnQbSMX3XvtskcLg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "RY9TJySnQbSMX3XvtskcLg" + }, + "RYBJwF-bSQiyReE8MZbwYw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --total-chunk=7 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "RYBJwF-bSQiyReE8MZbwYw" + }, + "RZDeiyBITI-oVhGAtzjmiQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.09bf64e57baeb97437e5" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.09bf64e57baeb97437e5" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-3", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "RZDeiyBITI-oVhGAtzjmiQ" + }, + "RZuaqU4dTC-2q-5AXvG_3w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/marionette.py", + "--cfg", + "mozharness/configs/marionette/prod_config.py", + "--cfg", + "mozharness/configs/marionette/mac_taskcluster_config.py", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2555e47ae96ee3508d0c" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2555e47ae96ee3508d0c" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-marionette-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "RZuaqU4dTC-2q-5AXvG_3w" + }, + "Ra9Zt50sQO-k3nLKaEgX1Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-clipboard-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Ra9Zt50sQO-k3nLKaEgX1Q" + }, + "RbsyiHqzRr23lg3wQ8CY8g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=8" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5f9f6cd1a6c37fc84fe9" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5f9f6cd1a6c37fc84fe9" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-8", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "RbsyiHqzRr23lg3wQ8CY8g" + }, + "ReRHITOZRxesBekt6MsSWA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C8", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b0287c105eeb62efe4fa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b0287c105eeb62efe4fa" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ReRHITOZRxesBekt6MsSWA" + }, + "RebirWo0Rj2wC6un4xZxHw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f1ff32239ed003d2d0fa" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f1ff32239ed003d2d0fa" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-chrome-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "RebirWo0Rj2wC6un4xZxHw" + }, + "RfY2HXYrSSqjCRik3sN8xQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2830234fd03be24ef9f9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2830234fd03be24ef9f9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RfY2HXYrSSqjCRik3sN8xQ" + }, + "RfYXKyxaSz62oTf7mfyz5w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6f9a15cc0b7e2546473c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6f9a15cc0b7e2546473c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RfYXKyxaSz62oTf7mfyz5w" + }, + "Rfsx3yKnSUy7_quvOt79vA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.77e94a9fbd2973cccf0b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.77e94a9fbd2973cccf0b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Rfsx3yKnSUy7_quvOt79vA" + }, + "RgkrlWKURa6x_E2JWca96g": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "RgkrlWKURa6x_E2JWca96g" + }, + "Rgl2w2TDRJqVHC2RO22CEw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.123f7c98f4102af1857a" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.123f7c98f4102af1857a" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-7", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Rgl2w2TDRJqVHC2RO22CEw" + }, + "Ri9b45eLQLmlZdo8w5zjyw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-e10s-2", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e1c18ad90b01b37384ec" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-e10s-2", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "Ri9b45eLQLmlZdo8w5zjyw" + }, + "Rji2lMRpRL-9K1xdCV67eg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6103d82638d7348e1005" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6103d82638d7348e1005" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Rji2lMRpRL-9K1xdCV67eg" + }, + "Rk5Jqk7zS1ytLGrLWJz5Tw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d51a738e1607cb30f53d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d51a738e1607cb30f53d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Rk5Jqk7zS1ytLGrLWJz5Tw" + }, + "RkV0MpBkSsqlK47BBvOjmA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "37", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-37", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 37, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R37", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-37", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=37", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.10edff36961564491874" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.10edff36961564491874" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-37", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "RkV0MpBkSsqlK47BBvOjmA" + }, + "RoF7PM66QGy8m-r0jZ0guA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3a4aecbc57a2d6e020f4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3a4aecbc57a2d6e020f4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RoF7PM66QGy8m-r0jZ0guA" + }, + "RoHSa9EbSsOrD5T-PWytnQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-media-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-media-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e868b472978254a36fc9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e868b472978254a36fc9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-media-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "RoHSa9EbSsOrD5T-PWytnQ" + }, + "RoONIdQzTzuA7McZ5o11XQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a6f12ef66550883e051c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a6f12ef66550883e051c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RoONIdQzTzuA7McZ5o11XQ" + }, + "RpI3ybXLTVqT5hA5lyAdQw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-7", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "RpI3ybXLTVqT5hA5lyAdQw" + }, + "RrVPmHR0S06SFdIvEHiBog": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ef56e232d6df1050830f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ef56e232d6df1050830f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RrVPmHR0S06SFdIvEHiBog" + }, + "Rrg32FHVSsOxY2-A5oQG_Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cbc4b04f47986fa4fd71" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cbc4b04f47986fa4fd71" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Rrg32FHVSsOxY2-A5oQG_Q" + }, + "RsIOoBh_Rk-1zUyzZuaayA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "RsIOoBh_Rk-1zUyzZuaayA" + }, + "RteZtS7NTuuYRcyQ4ZhDZA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.56e582d4dd452d9f3b9f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.56e582d4dd452d9f3b9f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RteZtS7NTuuYRcyQ4ZhDZA" + }, + "RvmPvEX8Rxi9rogCbU-3VQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a6b29c6138b41d919051" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a6b29c6138b41d919051" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RvmPvEX8Rxi9rogCbU-3VQ" + }, + "RwUanTp7Sv60p4-voFI__g": { + "attributes": { + "always_target": false, + "job_try_name": "bugzilla-components", + "kind": "source-test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "source-test", + "label": "source-test-file-metadata-bugzilla-components", + "optimization": { + "skip-unless-changed": [ + "**", + "taskcluster/ci/source-test/**", + "taskcluster/docker/lint/**" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "test", + "machine": { + "platform": "lint" + }, + "symbol": "Bugzilla", + "tier": 1 + } + }, + "metadata": { + "description": "Generate metadata about source files and Bugzilla ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "source-test-file-metadata-bugzilla-components", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/source-test" + }, + "payload": { + "artifacts": { + "public": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach file-info bugzilla-automation /builds/worker/artifacts\n" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 1800 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.source.source-bugzilla-info", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.source.source-bugzilla-info", + "index.gecko.v2.maple.pushlog-id.343.source.source-bugzilla-info", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.source.source-bugzilla-info", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "source-test", + "label": "source-test-file-metadata-bugzilla-components", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "RwUanTp7Sv60p4-voFI__g" + }, + "Rwha5nbUQNOLxNDap4v3Ew": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Rwha5nbUQNOLxNDap4v3Ew" + }, + "RwnOK6dMTKe1pKHPswOxdw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "RwnOK6dMTKe1pKHPswOxdw" + }, + "Rxffq5TcQQOrbDGsky7RpQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4a586f11846c6a893739" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4a586f11846c6a893739" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Rxffq5TcQQOrbDGsky7RpQ" + }, + "RzauWLlISD-41PLIYkTjMg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.80c64b9b54f5d7ed272f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.80c64b9b54f5d7ed272f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "RzauWLlISD-41PLIYkTjMg" + }, + "S0ileFxoTmSqmyEjx1PEkg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "S0ileFxoTmSqmyEjx1PEkg" + }, + "S0uvfPRvSPiHmtpgXxwn2g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6d2c87c41a5499c4050e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6d2c87c41a5499c4050e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "S0uvfPRvSPiHmtpgXxwn2g" + }, + "S1e-VRcfTleEfyJKaUdV5w": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "S1e-VRcfTleEfyJKaUdV5w" + }, + "S2o0xemkQuqA37fcs6rNRw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "36", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-36", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 36, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "36", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-36", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=36", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.617a4ddf19337fc8899c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.617a4ddf19337fc8899c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-36", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "S2o0xemkQuqA37fcs6rNRw" + }, + "S3GExnoORYmiidU5LB_Odg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "S3GExnoORYmiidU5LB_Odg" + }, + "S3npLoMcSreFn3FGgCz6Ow": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c57434d1013d2df8b4d2" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c57434d1013d2df8b4d2" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-4", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "S3npLoMcSreFn3FGgCz6Ow" + }, + "S7cs5c84TqOzLKMcLXW7MA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "S7cs5c84TqOzLKMcLXW7MA" + }, + "S7rHBDsnRV65zmA64SfNuQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.24f2ba1d142f4758af94" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.24f2ba1d142f4758af94" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "S7rHBDsnRV65zmA64SfNuQ" + }, + "SBFaZV28QA2rKXBoRFoYbQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X10", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9e734db2c8f3eb2a4c10" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9e734db2c8f3eb2a4c10" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SBFaZV28QA2rKXBoRFoYbQ" + }, + "SCGMTbqHQuigmztbC79ZKQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "telemetry-tests-client", + "unittest_suite": "telemetry-tests-client", + "unittest_try_name": "telemetry-tests-client-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-telemetry-tests-client-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "telemetry-tests-client", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "collection": { + "debug": true + }, + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "tc-e10s", + "tier": 3 + } + }, + "metadata": { + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-telemetry-tests-client-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/checkouts/gecko", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "remove_executables.py", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2893e269c33b60ff5dcf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2893e269c33b60ff5dcf" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-telemetry-tests-client-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SCGMTbqHQuigmztbC79ZKQ" + }, + "SCtBkiDSR_iMCMDpS5bpXA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8b9c2b16e5afdb018243" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8b9c2b16e5afdb018243" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SCtBkiDSR_iMCMDpS5bpXA" + }, + "SG2QmvHYRg-hmadbt-9flA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R15", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=15", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4475f2ff485e44039f66" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4475f2ff485e44039f66" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-15", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SG2QmvHYRg-hmadbt-9flA" + }, + "SGEl_Dd1SDan-40JAeo5QQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "SGEl_Dd1SDan-40JAeo5QQ" + }, + "SGHRVLm8Qa2qqgWWCXG8TA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --cppunittest-suite=cppunittest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-cppunit", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "SGHRVLm8Qa2qqgWWCXG8TA" + }, + "SGi8IR-nRHi5rnZs-OZvKw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3c55b09c213af362b173" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3c55b09c213af362b173" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SGi8IR-nRHi5rnZs-OZvKw" + }, + "SILuVQaIS42gkZVxcKIIwA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1debc95abd92549875b4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1debc95abd92549875b4" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SILuVQaIS42gkZVxcKIIwA" + }, + "SJWW3PCHQ4ewSROixMXajA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-media-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e423901e0ad06ae9fab9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e423901e0ad06ae9fab9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SJWW3PCHQ4ewSROixMXajA" + }, + "SJa0cLkpQxiyuGu9jx7Ztw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "SJa0cLkpQxiyuGu9jx7Ztw" + }, + "SJx7PSp4Qf2p3e9WMAXkWQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R4", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5b22142f0898403ef6dc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5b22142f0898403ef6dc" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SJx7PSp4Qf2p3e9WMAXkWQ" + }, + "SKdzQQL5SEK7p6Vfej7Eww": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "SKdzQQL5SEK7p6Vfej7Eww" + }, + "SL-HNSPuTfakniPvx37tJQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--tag", + "local", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bd2caf155ff0e230fe0f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bd2caf155ff0e230fe0f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-firefox-ui-functional-local-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SL-HNSPuTfakniPvx37tJQ" + }, + "SMDsxSnlRUuu52J-sQ7nsw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "23", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-23", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 23, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R23", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-23", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=23", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.eb50f7739b99f109078e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.eb50f7739b99f109078e" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-23", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SMDsxSnlRUuu52J-sQ7nsw" + }, + "SMQDjY-TRpSb7IISFB2qug": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ", + "build-signing": "Cuw8Gni7Shy76nRCvgSWIA" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Cuw8Gni7Shy76nRCvgSWIA", + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Cuw8Gni7Shy76nRCvgSWIA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-xpcshell", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "SMQDjY-TRpSb7IISFB2qug" + }, + "SNU19-ktRK-opvj9bAqJtg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "20", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-20", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 20, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "20", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-20", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=20", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.044073c9c53c66d388df" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.044073c9c53c66d388df" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-20", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SNU19-ktRK-opvj9bAqJtg" + }, + "SN_Phjc3S3-0rXZyA6dbKw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "SN_Phjc3S3-0rXZyA6dbKw" + }, + "SPLkN3-9TRWi955RQSHchA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d9047d283ec21d3b5641" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d9047d283ec21d3b5641" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SPLkN3-9TRWi955RQSHchA" + }, + "SR8i3aN0RDC_4dtvVYzQhQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag remote --e10s --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag remote --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-firefox-ui-functional-remote-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "SR8i3aN0RDC_4dtvVYzQhQ" + }, + "STubK5FCQRa-VAJpWlNSlw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d0492beff3ca0f6a7d33" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d0492beff3ca0f6a7d33" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "STubK5FCQRa-VAJpWlNSlw" + }, + "SV2B0fYIS1Cz7opiQ8Sstw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.63544e4aac2d1a32360b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.63544e4aac2d1a32360b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SV2B0fYIS1Cz7opiQ8Sstw" + }, + "SWQX1PWsQA2_7scZp04dFA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d5b7eeb910f6fbb96b1a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d5b7eeb910f6fbb96b1a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SWQX1PWsQA2_7scZp04dFA" + }, + "SWVzjKn0QruMhRIgxETJbg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "39", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-39", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 39, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "39", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-39", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=39", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a434635b0f9d1954ca40" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a434635b0f9d1954ca40" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-39", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SWVzjKn0QruMhRIgxETJbg" + }, + "SWcMHSQWSv2E_kscFTeblA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0a68a4ac93997db36a5b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0a68a4ac93997db36a5b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SWcMHSQWSv2E_kscFTeblA" + }, + "SYiRJXSISLOu06-Wytam4g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5c351e214caf29f4d0f7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5c351e214caf29f4d0f7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SYiRJXSISLOu06-Wytam4g" + }, + "SYveZx8VT5ik_aTOjdp8Qw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "upload-symbols", + "label": "build-linux-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "ERGOeyR0ReW_HCzxf4t_eQ", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-linux-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "SYveZx8VT5ik_aTOjdp8Qw" + }, + "SYzNDD8xRR2qGeZ-fiQwnw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-win32/debug", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Win32 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win32/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win32.py --config builds\\taskcluster_sub_win32\\debug.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win32-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win32-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.win32-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win32/debug", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "SZxUifb_St-pYJ9bEmYvlQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7d13dc2aa90da44215c4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7d13dc2aa90da44215c4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SZxUifb_St-pYJ9bEmYvlQ" + }, + "S_PfGt1sQ9KDUabDBBSFog": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "S_PfGt1sQ9KDUabDBBSFog" + }, + "Sa4S0fSfSOi9x0XILPwlcQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "linux32" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-linux-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Sa4S0fSfSOi9x0XILPwlcQ" + }, + "Sb_tLQPFTZKL9S6Jy4RwrA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R11", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9c7e4867ebcb7cd25919" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9c7e4867ebcb7cd25919" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-11", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Sb_tLQPFTZKL9S6Jy4RwrA" + }, + "Sbq_iKvJSAOrkqgfkyy9lA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Sbq_iKvJSAOrkqgfkyy9lA" + }, + "SdaM6QK8S5i42SH9EUVTcA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3606d50167f2673167be" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3606d50167f2673167be" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SdaM6QK8S5i42SH9EUVTcA" + }, + "SepP8_kqTri2s4XyCu8SnQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "SepP8_kqTri2s4XyCu8SnQ" + }, + "Sfpv57F0QEysNprjIrMUSA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "h3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --headless --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Sfpv57F0QEysNprjIrMUSA" + }, + "SgfGqUkHRZmbL0hrGMn_nA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fa45cdfe25bc73d322c6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fa45cdfe25bc73d322c6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SgfGqUkHRZmbL0hrGMn_nA" + }, + "SheaYg0sSZedXNtxs0uuHw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "build-signing", + "label": "build-signing-macosx64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "osx-cross" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'macosx64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-macosx64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "macapp", + "widevine" + ], + "paths": [ + "public/build/target.dmg" + ], + "taskId": "aXXHG7qhSECIIF-7vk8ppg", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.firefox.macosx64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.firefox.macosx64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.macosx64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.firefox-l10n.macosx64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.firefox-l10n.macosx64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:macapp", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-macosx64-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "SheaYg0sSZedXNtxs0uuHw" + }, + "Sm1W6ylvR0KFZQVMFqjNaA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win64-devedition-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "windows2012-64-devedition" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-win64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win64-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Sm1W6ylvR0KFZQVMFqjNaA" + }, + "SnhgWfXSRGKVrSjELSrJvg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-5", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "SnhgWfXSRGKVrSjELSrJvg" + }, + "SnulRN9-Q3SCgRY7ETQRpA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "29", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-29", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 29, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "29", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-29", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=29", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.753687806ba7fd9be938" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.753687806ba7fd9be938" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-29", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SnulRN9-Q3SCgRY7ETQRpA" + }, + "So3SidG1TMyw4GRAQ5WGSA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "So3SidG1TMyw4GRAQ5WGSA" + }, + "SoCOpw8yThu1F8ZdWyfuxA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=a11y", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=a11y" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f280110d0b0f955d91d3" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f280110d0b0f955d91d3" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-a11y", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "SoCOpw8yThu1F8ZdWyfuxA" + }, + "SoMhF6zfR6Gr77tBsvoyPA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-1", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "SoMhF6zfR6Gr77tBsvoyPA" + }, + "Sp_XZz7-Q2eQOiscKwdEJQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "Sp_XZz7-Q2eQOiscKwdEJQ" + }, + "SpgazDfTRMWzuK3Fxd2vUg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d6ffddee6a91d16cadcb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d6ffddee6a91d16cadcb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SpgazDfTRMWzuK3Fxd2vUg" + }, + "SqepLdAPTYaEcjXioKnvqg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-1", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "SqepLdAPTYaEcjXioKnvqg" + }, + "SsfPUFzEQFOhyscZZNbZkA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0ef214940bdc2273cbeb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0ef214940bdc2273cbeb" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "SsfPUFzEQFOhyscZZNbZkA" + }, + "StqTeTUBSSylTDK88cEKCA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c1cc1016daae15ec5682" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c1cc1016daae15ec5682" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "StqTeTUBSSylTDK88cEKCA" + }, + "SuHyclu6TdGs-bPORC_9UA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.55b5fef7ebb79975d261" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.55b5fef7ebb79975d261" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SuHyclu6TdGs-bPORC_9UA" + }, + "SucsCCg3Qv6OttqQv2Cthw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "upload-symbols", + "label": "build-linux-devedition-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux-devedition-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "HEKrob2nT2y03EjVyOyVWg", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-linux-devedition-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "SucsCCg3Qv6OttqQv2Cthw" + }, + "SxKiJP5NRJCiHRSl32G-Kg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fb1fe00ba7332a14f2f9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fb1fe00ba7332a14f2f9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "SxKiJP5NRJCiHRSl32G-Kg" + }, + "SyKr2ON0SVi2y8b1IDiLvg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.77e399bdd001ff3b3312" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.77e399bdd001ff3b3312" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-5", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "SyKr2ON0SVi2y8b1IDiLvg" + }, + "T1GzSFKwSXuabzcubC7pUA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X6", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.428f997f04c51ea51db9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.428f997f04c51ea51db9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "T1GzSFKwSXuabzcubC7pUA" + }, + "T3A0fJ3yQXKRU4FC158Tgw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "T3A0fJ3yQXKRU4FC158Tgw" + }, + "T4LhOvM-T4GRoOMTsC2n0g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6d66174dd8bde0efa23a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6d66174dd8bde0efa23a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "T4LhOvM-T4GRoOMTsC2n0g" + }, + "T4aUaNhvQHeZg3FZVrcfTA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7a2f22e786d14ce16a20" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7a2f22e786d14ce16a20" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "T4aUaNhvQHeZg3FZVrcfTA" + }, + "T5HMDgzeTiueZWLM5zx1Sg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "T5HMDgzeTiueZWLM5zx1Sg" + }, + "T61uLc9PRC-3wFu9HZhxQQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "28", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-28", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 28, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "28", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-28", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=28", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c1aae76a55c8f2fa1c60" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c1aae76a55c8f2fa1c60" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-28", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "T61uLc9PRC-3wFu9HZhxQQ" + }, + "T8Nmj0bHT3KsJ8OkWXxb8g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "20", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-20", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 20, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R20", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-20", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=20", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c2a6db04dcaf3f8c3dd0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c2a6db04dcaf3f8c3dd0" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-20", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "T8Nmj0bHT3KsJ8OkWXxb8g" + }, + "T93bganRRqaUdeXJu6YRAA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.578abd1a4cb89944fecf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.578abd1a4cb89944fecf" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "T93bganRRqaUdeXJu6YRAA" + }, + "TA5ddm8bSGmW0VTZychuSQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=reftest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-reftests-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "TA5ddm8bSGmW0VTZychuSQ" + }, + "TApuKJNPRwqry8bH0MHwsw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win32-devedition-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "windows2012-32-devedition" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-win32-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win32-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TApuKJNPRwqry8bH0MHwsw" + }, + "TB5mB5QqRJS0e4Ma8eaKSw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "TB5mB5QqRJS0e4Ma8eaKSw" + }, + "TBYKzMeATmuKZlgxUhhhLA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "TBYKzMeATmuKZlgxUhhhLA" + }, + "TC-kgnKKTsuxrFdKYqUKTg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e13f91935610862635a5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e13f91935610862635a5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TC-kgnKKTsuxrFdKYqUKTg" + }, + "TCymvqdPSqKX2AiLcslVSg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5553cce7542be54d748b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5553cce7542be54d748b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TCymvqdPSqKX2AiLcslVSg" + }, + "TEAZ8Tf7RdOICrzwGY1nkQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "7", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a5743f3b2d217cdc2add" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a5743f3b2d217cdc2add" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TEAZ8Tf7RdOICrzwGY1nkQ" + }, + "TEOzQxvcTISdny32MEUZQA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3bb0d6938577c51d37ff" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3bb0d6938577c51d37ff" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TEOzQxvcTISdny32MEUZQA" + }, + "TF6c2fjUQJS_OF0vuLxsLQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4c8725f7dac07a1e209c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4c8725f7dac07a1e209c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TF6c2fjUQJS_OF0vuLxsLQ" + }, + "TGKGPjmJTiqr21XD46dAqQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6ef8fe28037ee77f7288" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6ef8fe28037ee77f7288" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TGKGPjmJTiqr21XD46dAqQ" + }, + "THBp56FMSnOq4fesRPWIKA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0eaf47fb7ef2117ca4da" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0eaf47fb7ef2117ca4da" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "THBp56FMSnOq4fesRPWIKA" + }, + "TM4M37CzQZCuHODdQRFUow": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a62babc1d11bfc678efb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a62babc1d11bfc678efb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TM4M37CzQZCuHODdQRFUow" + }, + "TMd-QkhSQR-4f8rsHBY0jg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6ca38a165edc7a92e1ec" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6ca38a165edc7a92e1ec" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TMd-QkhSQR-4f8rsHBY0jg" + }, + "TNuC5q8wQC-zzE0Ja_VgwQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-5", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "TNuC5q8wQC-zzE0Ja_VgwQ" + }, + "TO3hBLl4TLW7noKBEWqDPw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6b704345f202953bc606" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6b704345f202953bc606" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TO3hBLl4TLW7noKBEWqDPw" + }, + "TOYv_cuuTIGAa7VKtMkpKA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--enable-webrender", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.90a602a7c482f5163bc9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.90a602a7c482f5163bc9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TOYv_cuuTIGAa7VKtMkpKA" + }, + "TPS8lToDQ2SP2OxGSIBYNA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "TPS8lToDQ2SP2OxGSIBYNA" + }, + "TPtxQll0REuz-X2iodJ2NQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "TPtxQll0REuz-X2iodJ2NQ" + }, + "TQ1q_ypnRD6lmFME68uz8A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "rc2", + "tier": 2 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-robocop-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2680b8b677220aeb6123" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2680b8b677220aeb6123" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-robocop-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TQ1q_ypnRD6lmFME68uz8A" + }, + "TQ7GA0S3Qb-eY2h8gC-g-A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.43ea0cef1e634cd9f17a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.43ea0cef1e634cd9f17a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TQ7GA0S3Qb-eY2h8gC-g-A" + }, + "TU0QWFp6SrOyDwmd71r_sw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.affb954f7e21abc54f4a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.affb954f7e21abc54f4a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TU0QWFp6SrOyDwmd71r_sw" + }, + "TVIUU4UVQjGdgxveVSs97w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.50a1458b4d339f4cfcd7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.50a1458b4d339f4cfcd7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TVIUU4UVQjGdgxveVSs97w" + }, + "TWZlSJE8SKO3PVNpyz_I-A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--tag", + "local", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c951a6a9fdca10b4e602" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c951a6a9fdca10b4e602" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-firefox-ui-functional-local-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TWZlSJE8SKO3PVNpyz_I-A" + }, + "TYD94eE7SiaB_yM6QFPA-g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "37", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-37", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 37, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "37", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-37", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=37", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7eded494199ccba73009" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7eded494199ccba73009" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-37", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TYD94eE7SiaB_yM6QFPA-g" + }, + "TZ8PjY7JR7W8nNQptU1y8A": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "TZ8PjY7JR7W8nNQptU1y8A" + }, + "T_7tko0SQlKzUmm_QXtYEg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0744e980d450d60f1bb1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0744e980d450d60f1bb1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "T_7tko0SQlKzUmm_QXtYEg" + }, + "T_cZXhY0S-CjDmgBe-MzDQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C6", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e333e0392229a154abd2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e333e0392229a154abd2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "T_cZXhY0S-CjDmgBe-MzDQ" + }, + "Tawojmq8R22JNnv6i3MY8g": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-4", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Tawojmq8R22JNnv6i3MY8g" + }, + "TbsMCZXWRwqpWmAERPybbw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "TbsMCZXWRwqpWmAERPybbw" + }, + "TeyshHiBQIqQ3M6Zko7FTQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "TeyshHiBQIqQ3M6Zko7FTQ" + }, + "Tfs9eqfXQ5eH49NiQVds4A": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-3", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Tfs9eqfXQ5eH49NiQVds4A" + }, + "TgPzMf9vSpOeqUaMfw07iA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5648a09e51ebf1ff8fea" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5648a09e51ebf1ff8fea" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TgPzMf9vSpOeqUaMfw07iA" + }, + "TgWVuej8SYKcpO3bck8zmw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "kind": "build-signing", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "build-signing", + "label": "build-signing-linux64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Ns", + "tier": 1 + } + }, + "metadata": { + "description": "Initial Signing for locale 'en-US' for build 'linux64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-signing-linux64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "gpg", + "widevine" + ], + "paths": [ + "public/build/target.tar.bz2" + ], + "taskId": "LnQHtSIyQq-3fF5zNPWrQw", + "taskType": "build" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.signed-nightly.nightly.latest.firefox.linux64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.2018.01.09.latest.firefox.linux64-opt", + "index.gecko.v2.maple.signed-nightly.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-opt", + "index.gecko.v2.maple.signed-nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.pushdate.2018.01.09.20180109190725.firefox-l10n.linux64-opt.en-US", + "index.gecko.v2.maple.signed-nightly.latest.firefox-l10n.linux64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:gpg", + "project:releng:signing:format:widevine" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build-signing", + "label": "build-signing-linux64-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "TgWVuej8SYKcpO3bck8zmw" + }, + "TiAIEfc3TeOYTo0stdmC6w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "TiAIEfc3TeOYTo0stdmC6w" + }, + "TivzUU6eQ924MgUbi2RoQA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9bde5ea0547d3c28c7f3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9bde5ea0547d3c28c7f3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TivzUU6eQ924MgUbi2RoQA" + }, + "Tjd84CkmQme6Gk4DLiZiCQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "46", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-46", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 46, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R46", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-46", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=46", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ba78039a937583d29839" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ba78039a937583d29839" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-46", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Tjd84CkmQme6Gk4DLiZiCQ" + }, + "TlTBiS1IQVWoy9Fe4Jpc_A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9003bbeeaf9293bd3c20" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9003bbeeaf9293bd3c20" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TlTBiS1IQVWoy9Fe4Jpc_A" + }, + "TnL0zzLiTJe3-dLXz0Rszg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-clipboard", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-clipboard", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-plain-clipboard", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8b1f2b72c9b5c89680aa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8b1f2b72c9b5c89680aa" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-clipboard", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TnL0zzLiTJe3-dLXz0Rszg" + }, + "TnkL2FleQq2N9EMky9ESIQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1f4694c535a4d5b2098d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1f4694c535a4d5b2098d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TnkL2FleQq2N9EMky9ESIQ" + }, + "TokhsXj_S-GUQ2LKwYS64w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.af947f5ab4cb043d8f9a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.af947f5ab4cb043d8f9a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TokhsXj_S-GUQ2LKwYS64w" + }, + "Tpvpt0dDQGSzElX7053P2A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe5994f32005029516ec" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe5994f32005029516ec" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Tpvpt0dDQGSzElX7053P2A" + }, + "Tqr-cVYuS6qDEmZnT3kb0Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2018d89c5018653edf9b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2018d89c5018653edf9b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Tqr-cVYuS6qDEmZnT3kb0Q" + }, + "Ttohbx9ATA20bo2pMf0-Xw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.adf8990dbf6e643f6971" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.adf8990dbf6e643f6971" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Ttohbx9ATA20bo2pMf0-Xw" + }, + "Tvj6gxppRCugMmBeeCBKoQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ece3f5c8e815a5455503" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ece3f5c8e815a5455503" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Tvj6gxppRCugMmBeeCBKoQ" + }, + "TvrEaCuwSHCDBsHwrY_ftA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c7d268dcd9219c08b3d4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c7d268dcd9219c08b3d4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "TvrEaCuwSHCDBsHwrY_ftA" + }, + "TvvNIriDSo6P69efWbFxtA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b9827aee213ed25c3811" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b9827aee213ed25c3811" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TvvNIriDSo6P69efWbFxtA" + }, + "TxpdtILqR-KAUHPo2UjLbg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-no-accel-e10s-1", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ba896ba0625b7062cae2" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-e10s-1", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "TxpdtILqR-KAUHPo2UjLbg" + }, + "Ty-sInQuRcGcT7hZp0JO0w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "Cpp", + "tier": 2 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=cppunittest", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.624af17c5c00e1d688c9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.624af17c5c00e1d688c9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Ty-sInQuRcGcT7hZp0JO0w" + }, + "TyY_et9JQC2yKoqw6SWvGQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e7ddc19a7729863bfcf9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e7ddc19a7729863bfcf9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "TyY_et9JQC2yKoqw6SWvGQ" + }, + "TzF5JTwyTEyOUVC1QIpCeg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "TzF5JTwyTEyOUVC1QIpCeg" + }, + "TzymRbyhR0yGaUYKZ1X_wA": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "TzymRbyhR0yGaUYKZ1X_wA" + }, + "U-w6-0EZSy63tE6kzFAosw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cppunittest-suite=cppunittest", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--cppunittest-suite=cppunittest" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe87cde9ed72fffb2a19" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe87cde9ed72fffb2a19" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-cppunit", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "U-w6-0EZSy63tE6kzFAosw" + }, + "U0CmCQXBRzuXQuCkGi1rjg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg", + "build-signing": "Inxh9m1zSOujFUA1g7jxNg", + "repackage": "HCzRVamESDG8_IdGdy3L4g" + }, + "kind": "repackage-signing", + "label": "repackage-signing-win64-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg", + "HCzRVamESDG8_IdGdy3L4g", + "Inxh9m1zSOujFUA1g7jxNg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "windows2012-64-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'win64-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-win64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "HCzRVamESDG8_IdGdy3L4g", + "taskType": "repackage" + }, + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/target.installer.exe" + ], + "taskId": "HCzRVamESDG8_IdGdy3L4g", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win64-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win64-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win64-devedition-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:mar_sha384", + "project:releng:signing:format:sha2signcode" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-win64-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "U0CmCQXBRzuXQuCkGi1rjg" + }, + "U2LyeHAKTROFx6Rf_rArsw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "22", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-22", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 22, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "22", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-22", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=22", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9b71bf1783fba057a54b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9b71bf1783fba057a54b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-22", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "U2LyeHAKTROFx6Rf_rArsw" + }, + "U2U07Q9URrSMVWZRyP5V4w": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "U2U07Q9URrSMVWZRyP5V4w" + }, + "U2_P_pnKSWOf-dNFDojs-Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-3", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "U2_P_pnKSWOf-dNFDojs-Q" + }, + "U3RHggZ2SDqwHnWqqM4fPw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fd7dd84bc234e56d3e24" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fd7dd84bc234e56d3e24" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "U3RHggZ2SDqwHnWqqM4fPw" + }, + "U3ZkdB7JT-e2_PK0O-Z4Aw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2a7f71c1c1381c0afb58" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2a7f71c1c1381c0afb58" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "U3ZkdB7JT-e2_PK0O-Z4Aw" + }, + "U4zJ1q99Rmi9hAqaiXJDgg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C10", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f67b253eeea54b4b4ced" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f67b253eeea54b4b4ced" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-10", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "U4zJ1q99Rmi9hAqaiXJDgg" + }, + "U58IznGhS92JokcUCwVQFA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1ac9c51f6999be4ea20b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1ac9c51f6999be4ea20b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "U58IznGhS92JokcUCwVQFA" + }, + "U6yD7CNmQMKXesoawA3mdA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.21a152f7a5b21d078d31" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.21a152f7a5b21d078d31" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "U6yD7CNmQMKXesoawA3mdA" + }, + "U7OCv3wLSm6Rn4vI2UjulQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f6ea0a47161f14ce72b6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f6ea0a47161f14ce72b6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "U7OCv3wLSm6Rn4vI2UjulQ" + }, + "U7t67bfiT3mP8sjaS0irXQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --headless --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --headless --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-marionette-headless-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "U7t67bfiT3mP8sjaS0irXQ" + }, + "U8GChg9HRHG_aEYEx3j0lg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.50edb13670250b69ebbd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.50edb13670250b69ebbd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "U8GChg9HRHG_aEYEx3j0lg" + }, + "U8k1N5RNTPqfOnnN4KjsaA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-media-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "mda", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-media-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-media-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "U8k1N5RNTPqfOnnN4KjsaA" + }, + "U8olkKITTnetSqOa9OJWvw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "U8olkKITTnetSqOa9OJWvw" + }, + "U91yNOYFSJy9paJ4guabYg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "U91yNOYFSJy9paJ4guabYg" + }, + "U98Tz523TBOgEO1Av0dJmA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0079298d985e376f799e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0079298d985e376f799e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "U98Tz523TBOgEO1Av0dJmA" + }, + "U9ja8MlMQliMRvp-UUAmGA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C4", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-crashtest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.daba87f1c827db1a4722" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.daba87f1c827db1a4722" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "U9ja8MlMQliMRvp-UUAmGA" + }, + "U9q_equcRp6NBls2HFoykQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-6", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "U9q_equcRp6NBls2HFoykQ" + }, + "UAhpHbCNSL-DAbKLiITIIQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-2", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "UAhpHbCNSL-DAbKLiITIIQ" + }, + "UCXl4x4vRQu8_tBfiJHTaQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.134edc06d1679ccf412e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.134edc06d1679ccf412e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UCXl4x4vRQu8_tBfiJHTaQ" + }, + "UEhEIZowRQq9ny55c2VxUg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e656de3089bfc3c80dd9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e656de3089bfc3c80dd9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UEhEIZowRQq9ny55c2VxUg" + }, + "UF5s7NvWTiyl48EZvAQJcg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "UF5s7NvWTiyl48EZvAQJcg" + }, + "UI7T96YaQgaboiPxFdRPuQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "2", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.381bea4740c49350f041" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.381bea4740c49350f041" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UI7T96YaQgaboiPxFdRPuQ" + }, + "ULVJkZMhQte-i6lC60qciw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "ULVJkZMhQte-i6lC60qciw" + }, + "ULqEhbvDSQiU4sySmQyurA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cc1f5468ddaf4556d8df" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cc1f5468ddaf4556d8df" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ULqEhbvDSQiU4sySmQyurA" + }, + "UMIcXQ5aS4Wl0ZlvIPRK4w": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "UMIcXQ5aS4Wl0ZlvIPRK4w" + }, + "UN6MMGv_RFqEZHWJLoA3yA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "6", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.75da834a31af2e8c6871" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.75da834a31af2e8c6871" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UN6MMGv_RFqEZHWJLoA3yA" + }, + "UPufKqCZSn-HVm4p1_lzvw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4bd4a6eed1f212ca93f7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4bd4a6eed1f212ca93f7" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UPufKqCZSn-HVm4p1_lzvw" + }, + "URSgP3WkS3yu4zreS6PNew": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "URSgP3WkS3yu4zreS6PNew" + }, + "UTqEpii4RO6fTJNihjImUg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-6", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "UTqEpii4RO6fTJNihjImUg" + }, + "UUZ85qSNT4y8FNHyks5zXA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ea6fd7b0b7723ee76eb0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ea6fd7b0b7723ee76eb0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UUZ85qSNT4y8FNHyks5zXA" + }, + "UUmxgUcdTiiB8ZsRa7P7sw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "mda1", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4237808e9ccb5b1a0a5f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4237808e9ccb5b1a0a5f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UUmxgUcdTiiB8ZsRa7P7sw" + }, + "UW2rnUpiTZiyyRFKrFhDNg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ac7a8901f508705b33bc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ac7a8901f508705b33bc" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UW2rnUpiTZiyyRFKrFhDNg" + }, + "UXvWFY-HSVuTO5BKYLAdbw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7533a724744742b8c838" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7533a724744742b8c838" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UXvWFY-HSVuTO5BKYLAdbw" + }, + "UZf_DrCNS9KMGtFd8ZT1Mw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests-wdspec", + "unittest_suite": "web-platform-tests-wdspec", + "unittest_try_name": "web-platform-tests-wdspec-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-wdspec-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-wdspec", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Wd", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-wdspec-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.eee7829b95997ce03044" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.eee7829b95997ce03044" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-wdspec-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UZf_DrCNS9KMGtFd8ZT1Mw" + }, + "UceF2HgORaqgJ83qaSHAMg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=9" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-9", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "UceF2HgORaqgJ83qaSHAMg" + }, + "UdyqspIETfydqwRn6axzew": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "32", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-32", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 32, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "32", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-32", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=32", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8622a04b7031ff5cbb2c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8622a04b7031ff5cbb2c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-32", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UdyqspIETfydqwRn6axzew" + }, + "Ue7WY0AaRdubtHIMUvda2w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.51c0c1a4a20e8e28ec8f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.51c0c1a4a20e8e28ec8f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Ue7WY0AaRdubtHIMUvda2w" + }, + "UfL3R04oTRShbcOETOoNUQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.94be1b52103dfa988dd1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.94be1b52103dfa988dd1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UfL3R04oTRShbcOETOoNUQ" + }, + "UhYY5bVNQdW6M1BjkHbddw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2220de569a16cdabdd34" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2220de569a16cdabdd34" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UhYY5bVNQdW6M1BjkHbddw" + }, + "UhhXc7KwRwq6be-2fKjobw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.edf82950356fa06ce70a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.edf82950356fa06ce70a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UhhXc7KwRwq6be-2fKjobw" + }, + "UhrfWnkoQOymtdTz36i2qQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.58e153f4efa355575da4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.58e153f4efa355575da4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UhrfWnkoQOymtdTz36i2qQ" + }, + "Uk9PRt-cTFG2v_bQKvmNtg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b9548b853e2d580a652d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b9548b853e2d580a652d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Uk9PRt-cTFG2v_bQKvmNtg" + }, + "Uk_udm33TXy2maRY0v14NA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Uk_udm33TXy2maRY0v14NA" + }, + "UmRtlzfkTreiB94c6Y6HpA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bc4b4fe70c62ca97a921" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bc4b4fe70c62ca97a921" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UmRtlzfkTreiB94c6Y6HpA" + }, + "UnEunvm9QT6PdnxJC4gkQg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "18", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-18", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 18, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "18", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-18", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=18", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cd1341af1f4d148c549f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cd1341af1f4d148c549f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-18", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UnEunvm9QT6PdnxJC4gkQg" + }, + "UnbAlj9XQx-rT893Y5CGAQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "43", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-43", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 43, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "43", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-43", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=43", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ad8ffffab87b7ed189e1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ad8ffffab87b7ed189e1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-43", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UnbAlj9XQx-rT893Y5CGAQ" + }, + "Unee4NAcT0uHhnQcSv-jZw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=a11y --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=a11y" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-a11y", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Unee4NAcT0uHhnQcSv-jZw" + }, + "UoDVsxlVSBWaU6tMTEBuyg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "UoDVsxlVSBWaU6tMTEBuyg" + }, + "UpGtTM-FS-SfqIFrp_ptzA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R10", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.84fd9625621a86a3752b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.84fd9625621a86a3752b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-10", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UpGtTM-FS-SfqIFrp_ptzA" + }, + "UprMXCHhRBeZ2dnle_AmkQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f88a8062c8b42392ebd0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f88a8062c8b42392ebd0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UprMXCHhRBeZ2dnle_AmkQ" + }, + "UqltAvpISlmGzCrHMVlh7Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "15", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=15", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.85ae6b18a37dc6d6949a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.85ae6b18a37dc6d6949a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UqltAvpISlmGzCrHMVlh7Q" + }, + "UrVxsQBjQZG171bun3SWUw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.98bf0d799139b51b575f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.98bf0d799139b51b575f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UrVxsQBjQZG171bun3SWUw" + }, + "UrldBm3YScuUA5-NnT2Kww": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-clipboard", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "cl", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-clipboard", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-plain-clipboard", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c897928462d7d091976c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c897928462d7d091976c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-clipboard", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UrldBm3YScuUA5-NnT2Kww" + }, + "UsD8wCCeQ1q5XviCs_5HIA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e181191af7a08c88561b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e181191af7a08c88561b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UsD8wCCeQ1q5XviCs_5HIA" + }, + "UtIJ-MHUSAW0-Zjnhb-d3w": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ebeea09400405079a144" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ebeea09400405079a144" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UtIJ-MHUSAW0-Zjnhb-d3w" + }, + "Uuq7FI46SuurPsNTVP8iEQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7372f28669409dfd6565" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7372f28669409dfd6565" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Uuq7FI46SuurPsNTVP8iEQ" + }, + "UvGWMQjQQoyQJ0dSJSytUg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b3be987eae1f473a0d4e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b3be987eae1f473a0d4e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "UvGWMQjQQoyQJ0dSJSytUg" + }, + "UvNC5_CxSCK3f6uSV2sNbQ": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b2a6ef88fb190fc2c8c2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b2a6ef88fb190fc2c8c2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UvNC5_CxSCK3f6uSV2sNbQ" + }, + "UxHgRaABRoC8zrpqNVkVBg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "17", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-17", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 17, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R17", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-17", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=17", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3e494c9cf4c53b96947c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3e494c9cf4c53b96947c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-17", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UxHgRaABRoC8zrpqNVkVBg" + }, + "UzFwrQiyQxOFIeQ9J6kekw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "48", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-48", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 48, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R48", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-48", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=48", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.090af1f7ba97165923c5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.090af1f7ba97165923c5" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-48", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "UzFwrQiyQxOFIeQ9J6kekw" + }, + "V0PWYZnkTk2ZZ1C6RHfQaA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "32", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-32", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 32, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R32", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-32", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=32", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.491d1c2933ff33700506" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.491d1c2933ff33700506" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-32", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "V0PWYZnkTk2ZZ1C6RHfQaA" + }, + "V0u8RXsrSIqz5hz6RoQmJA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.16d61f7c3337d3307058" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.16d61f7c3337d3307058" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "V0u8RXsrSIqz5hz6RoQmJA" + }, + "V2UNznQfTgqKn5yLb7AB2A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cf4ad2eaae0b768c6e83" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cf4ad2eaae0b768c6e83" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "V2UNznQfTgqKn5yLb7AB2A" + }, + "V3kPDsjGQROj--B7-b-MlQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg", + "build-signing": "SheaYg0sSZedXNtxs0uuHw" + }, + "kind": "repackage", + "label": "repackage-macosx64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "FJ8BwxDbQU23Q6DzXGC2hA", + "FzokDPkGT7uIQ5tleaGBfA", + "IIQOnLdoTueU9hBgwCPS7Q", + "SheaYg0sSZedXNtxs0uuHw", + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "osx-cross" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'macosx64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-macosx64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/target.complete.mar": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/artifacts/target.complete.mar", + "type": "file" + }, + "public/build/target.dmg": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/artifacts/target.dmg", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-macosx64-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/repackage.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "JOB_SCRIPT": "taskcluster/scripts/builder/repackage.sh", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "download_input setup repackage", + "MOZHARNESS_CONFIG": "repackage/osx_signed.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/repackage.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/dmg.tar.xz@FzokDPkGT7uIQ5tleaGBfA public/build/hfsplus-tools.tar.xz@FJ8BwxDbQU23Q6DzXGC2hA", + "SCCACHE_DISABLE": "1", + "SIGNED_INPUT": "https://queue.taskcluster.net/v1/task/SheaYg0sSZedXNtxs0uuHw/artifacts/public/build/target.tar.gz", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/host/bin/mar" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.macosx64-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.macosx64-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.macosx64-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.macosx64-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.macosx64-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "docker-worker:cache:level-3-maple-build-macosx64-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-macosx64-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-macosx64" + }, + "task_id": "V3kPDsjGQROj--B7-b-MlQ" + }, + "V3pfV09PRPOX8rarvbAzAg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c99dc3f2929719d3c407" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c99dc3f2929719d3c407" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "V3pfV09PRPOX8rarvbAzAg" + }, + "V4FGCSZ4Tga-r_KEpK8i3A": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-reftest-no-accel-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-reftest-no-accel-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple opt test reftest-no-accel-e10s", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3d4858504af5f6ade58a" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-reftest-no-accel-e10s", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "V4FGCSZ4Tga-r_KEpK8i3A" + }, + "V4tVqMDURCG6TntOpYssjw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.60b166c770d46c95e293" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.60b166c770d46c95e293" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "V4tVqMDURCG6TntOpYssjw" + }, + "V5ZeWPEvT3KJpNF61G9oJw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.577c2025df5d8bc55df2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.577c2025df5d8bc55df2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "V5ZeWPEvT3KJpNF61G9oJw" + }, + "V6WqbpdBSpa9oTU7_EIMhw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg", + "build-signing": "Inxh9m1zSOujFUA1g7jxNg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg", + "Inxh9m1zSOujFUA1g7jxNg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Inxh9m1zSOujFUA1g7jxNg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-xpcshell", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "V6WqbpdBSpa9oTU7_EIMhw" + }, + "V7PNl4kGQ1eD8x5zG2fKwA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=6" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e15caa4b537a22a6cd6a" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e15caa4b537a22a6cd6a" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-6", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "V7PNl4kGQ1eD8x5zG2fKwA" + }, + "VAIgRjc_S1C3KRmSJESVwQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-3", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "VAIgRjc_S1C3KRmSJESVwQ" + }, + "VBJqWS1pQEW40p9TLpHmzw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6fe4fb0b3a4711987207" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6fe4fb0b3a4711987207" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-8", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "VBJqWS1pQEW40p9TLpHmzw" + }, + "VFXf68AZSsiySgpgIqs4hw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=14", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0ca0d1fb040a806735be" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0ca0d1fb040a806735be" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "VFXf68AZSsiySgpgIqs4hw" + }, + "VGDoNy5CQSCAqkxSE3XIxw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "VGDoNy5CQSCAqkxSE3XIxw" + }, + "VIq7lIdtQqavcX7KUL5XAw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag local --e10s --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --tag local --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-firefox-ui-functional-local-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "VIq7lIdtQqavcX7KUL5XAw" + }, + "VJSu_Y2JRwOcb288AAIDIg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8521d2bff711f0c226b6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8521d2bff711f0c226b6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "VJSu_Y2JRwOcb288AAIDIg" + }, + "VLt1F_PnRoaeq5YrO2onIQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cbcd16e96c6d4df5bc7b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cbcd16e96c6d4df5bc7b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "VLt1F_PnRoaeq5YrO2onIQ" + }, + "VMxglm3cTTeRtpeOUYs-lA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.57229d350f5c0d69c93d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.57229d350f5c0d69c93d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "VMxglm3cTTeRtpeOUYs-lA" + }, + "VPk4DJ7HSDuiW0N0O-W7tQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0499e3300e44d5b76f23" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0499e3300e44d5b76f23" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "VPk4DJ7HSDuiW0N0O-W7tQ" + }, + "VQTAtkyaQ8aZsJuTVPMDRg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "VQTAtkyaQ8aZsJuTVPMDRg" + }, + "VRw9IATvRbusDXyYXCmqLQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C2", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-crashtest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e298c232eb3a9799a902" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e298c232eb3a9799a902" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "VRw9IATvRbusDXyYXCmqLQ" + }, + "VY9zu8Z3QFG4ZH09gt1o-w": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "VY9zu8Z3QFG4ZH09gt1o-w" + }, + "VZz6VrJpQgS1E7Ewu786hQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag local --e10s --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --tag local --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-firefox-ui-functional-local-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "VZz6VrJpQgS1E7Ewu786hQ" + }, + "V_5eGxImS0OI3xJX4YeOlw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-2", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "V_5eGxImS0OI3xJX4YeOlw" + }, + "Vc-1QcmoQVejpwzRfzjR2g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cd4d8877bd7697fc12df" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cd4d8877bd7697fc12df" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Vc-1QcmoQVejpwzRfzjR2g" + }, + "Ve1z3nUTRq6gUPlFomdlFQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5d7fd7554d2fdc6225fa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5d7fd7554d2fdc6225fa" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Ve1z3nUTRq6gUPlFomdlFQ" + }, + "ViC73U1WS2ahwD3sCKU_tw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "ViC73U1WS2ahwD3sCKU_tw" + }, + "ViFvF0nORKqrTZhe6fpFmA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "10", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.97c4def85d324d45708d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.97c4def85d324d45708d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ViFvF0nORKqrTZhe6fpFmA" + }, + "Vn3FfduhRxKiFzYGEnABhA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fd493e765c1fc423b0b1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fd493e765c1fc423b0b1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Vn3FfduhRxKiFzYGEnABhA" + }, + "VroV-siDSianwwDQMRQL9A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "21", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-21", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 21, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R21", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-21", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=21", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e2e829df5168191c8be3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e2e829df5168191c8be3" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-21", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "VroV-siDSianwwDQMRQL9A" + }, + "VsgXBiY8RCKEKzXbTdOlNQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\firefox_ui_tests\\functional.py --cfg mozharness\\configs\\firefox_ui_tests\\taskcluster_windows.py --tag local --e10s --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag local --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-firefox-ui-functional-local-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "VsgXBiY8RCKEKzXbTdOlNQ" + }, + "Vsu6SxorTSSInLvl5W6Wbw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3b4d55e7dd5f5282a0f4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3b4d55e7dd5f5282a0f4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Vsu6SxorTSSInLvl5W6Wbw" + }, + "Vun27CddSfGyhaoTHd7kJg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Vun27CddSfGyhaoTHd7kJg" + }, + "Vw3VU7OmRWOcqEX_2JrPeg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c9dfd192c62d7b41e8a4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c9dfd192c62d7b41e8a4" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Vw3VU7OmRWOcqEX_2JrPeg" + }, + "VwO4GZZbS-G_8mp2cDM_bg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2bdbb19e0ca41ceda0e6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2bdbb19e0ca41ceda0e6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "VwO4GZZbS-G_8mp2cDM_bg" + }, + "Vzjs-bk9SP6d5Vp_HXF20w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8c9affe4966840b953cc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8c9affe4966840b953cc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-marionette-headless-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Vzjs-bk9SP6d5Vp_HXF20w" + }, + "W-duhM9mSYWJnEPmNsqkPQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-reftest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-reftest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit DevEdition maple opt test reftest-e10s", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b3dc17b3890323f24bc5" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-reftest-e10s", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "W-duhM9mSYWJnEPmNsqkPQ" + }, + "W1D697dCT1COc3xoXqX-7g": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "W1D697dCT1COc3xoXqX-7g" + }, + "W286YWKqQDmM0DnMBUnX6Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--gtest-suite=gtest", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.19a7cc19477bd41b8f00" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.19a7cc19477bd41b8f00" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-gtest", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "W286YWKqQDmM0DnMBUnX6Q" + }, + "W2slN2LnRim07glEU73bBQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b702e4ac2794c3c36179" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b702e4ac2794c3c36179" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "W2slN2LnRim07glEU73bBQ" + }, + "W3TnAoMVT5uPhVmdSQxjtg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.28962a9b8419db1b0f29" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.28962a9b8419db1b0f29" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "W3TnAoMVT5uPhVmdSQxjtg" + }, + "W3wBWPAwRg6qIX09kAi9BA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.18f6a702268459b9f724" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.18f6a702268459b9f724" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "W3wBWPAwRg6qIX09kAi9BA" + }, + "W48dNc6CTkK0KsWOagTNKw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "16", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=16", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ba9fc71895812e1d88ed" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ba9fc71895812e1d88ed" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "W48dNc6CTkK0KsWOagTNKw" + }, + "W67yD4PLSFOnTls85vBmmQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "44", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-44", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 44, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "44", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-44", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=44", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.eba7b8def1810c889bcc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.eba7b8def1810c889bcc" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-44", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "W67yD4PLSFOnTls85vBmmQ" + }, + "W9Vkwsj0QLyXAThEpdBSNw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "W9Vkwsj0QLyXAThEpdBSNw" + }, + "WB5eLv6CSoiTBvrhAjJPrQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "h1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --headless --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "WB5eLv6CSoiTBvrhAjJPrQ" + }, + "WD_x1hwcQDmku3fdbekYSQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=11" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-11", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "WD_x1hwcQDmku3fdbekYSQ" + }, + "WEzfdkCZTimzygPDHjBVIA": { + "attributes": { + "always_target": false, + "build_platform": "win32-st-an", + "build_type": "opt", + "kind": "static-analysis", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "static-analysis", + "label": "static-analysis-win32-st-an/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JK-b5uMvSgapkaE456m_oQ", + "b7p9n_sbQx6q_9bQpR1BTQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "S", + "tier": 1 + } + }, + "metadata": { + "description": "Win32 Static Analysis Opt (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "static-analysis-win32-st-an/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/static-analysis" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win32.py --config builds\\taskcluster_sub_win32\\clang.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@JK-b5uMvSgapkaE456m_oQ public/build/rustc.tar.bz2@b7p9n_sbQx6q_9bQpR1BTQ public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest" + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.win32-st-an-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.win32-st-an-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.win32-st-an-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-st-an-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "static-analysis", + "label": "static-analysis-win32-st-an/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "WEzfdkCZTimzygPDHjBVIA" + }, + "WG3G33qrQNqywQYzTLmNOw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "WG3G33qrQNqywQYzTLmNOw" + }, + "WHo5NWOLRxWbWWITcPJdQg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fb66c5add217c9b75a71" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fb66c5add217c9b75a71" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "WHo5NWOLRxWbWWITcPJdQg" + }, + "WHt0QWHRThygFpQPhjrN5Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b7cc5e7e0fdd4cbf7537" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b7cc5e7e0fdd4cbf7537" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WHt0QWHRThygFpQPhjrN5Q" + }, + "WJa39GFLRbS3T1IbLq_1wQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X1", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.43496ffe765e0a03c24e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.43496ffe765e0a03c24e" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WJa39GFLRbS3T1IbLq_1wQ" + }, + "WJlFY_9DSEuFNty6-JIIjw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fc4afe7d2a42713ef117" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fc4afe7d2a42713ef117" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WJlFY_9DSEuFNty6-JIIjw" + }, + "WL1PNtqGRvO3mOLNnn6eAw": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=2", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f16a686c02ae584bd33a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f16a686c02ae584bd33a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WL1PNtqGRvO3mOLNnn6eAw" + }, + "WLAjgC5XQa-kZfw3uIsVag": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "WLAjgC5XQa-kZfw3uIsVag" + }, + "WLESg1LrRaeNQvd-RxGpRg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X3", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a92754b59f8dc90b1d14" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a92754b59f8dc90b1d14" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WLESg1LrRaeNQvd-RxGpRg" + }, + "WLIh8loHQzmcLZyYhLzrdw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --total-chunk=7 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "WLIh8loHQzmcLZyYhLzrdw" + }, + "WPl6RP18T5-SD6mlgohpEw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "38", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-38", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 38, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "38", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-38", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=38", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.01e0ee0eb68de49ceb75" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.01e0ee0eb68de49ceb75" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-38", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WPl6RP18T5-SD6mlgohpEw" + }, + "WRO_zoU9SoS66JbFW6oBYw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "41", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-41", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 41, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R41", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-41", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=41", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a45f85668051ab983f67" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a45f85668051ab983f67" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-41", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WRO_zoU9SoS66JbFW6oBYw" + }, + "WRYXBmq-QQewAc9B-yqekw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--xpcshell-suite=xpcshell", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--xpcshell-suite=xpcshell" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ab843436088bdcf62b29" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ab843436088bdcf62b29" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-xpcshell", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "WRYXBmq-QQewAc9B-yqekw" + }, + "WRfxE161TWi4Se2qjVkksQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a2830f940b2b60e54757" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a2830f940b2b60e54757" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "WRfxE161TWi4Se2qjVkksQ" + }, + "WSLms04xQbOdnKrlCjz06Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2936bf0e573dd71da7cb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2936bf0e573dd71da7cb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "WSLms04xQbOdnKrlCjz06Q" + }, + "WUObOkuURyKBKebmoGDeWA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.77d2526a0bf98c9bb2c7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.77d2526a0bf98c9bb2c7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "WUObOkuURyKBKebmoGDeWA" + }, + "WUhiZrQyS46MnoPxSzpUTA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "upload-symbols", + "label": "build-macosx64-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "osx-cross" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-macosx64-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "aXXHG7qhSECIIF-7vk8ppg", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-macosx64-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "WUhiZrQyS46MnoPxSzpUTA" + }, + "WW9m_ECBT_K7AqK1plaf9g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.905b878ec3b6bcdd8ba0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.905b878ec3b6bcdd8ba0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "WW9m_ECBT_K7AqK1plaf9g" + }, + "WXW0IqrgTQulSSukBXCFwg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "WXW0IqrgTQulSSukBXCFwg" + }, + "Wb8BX3AiS3yuME4wIEVjDw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R12", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ba7717b7a9e30fbd478a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ba7717b7a9e30fbd478a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-12", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Wb8BX3AiS3yuME4wIEVjDw" + }, + "WbVYzHQtRqGfWDJnEjXPbw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "WbVYzHQtRqGfWDJnEjXPbw" + }, + "WcgoikRFSQO0b3X9glbd5Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ff19f1504d40bb8eb1eb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ff19f1504d40bb8eb1eb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WcgoikRFSQO0b3X9glbd5Q" + }, + "We2VzVgtQ3KrgM3yvAEnHg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-gpu", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-gpu", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-plain-gpu", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c4ace5bb400f5664d195" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c4ace5bb400f5664d195" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-gpu", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "We2VzVgtQ3KrgM3yvAEnHg" + }, + "WeSYzbtoTR-N0OI-Hv6TxA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3ca1262cc281a895b1a3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3ca1262cc281a895b1a3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WeSYzbtoTR-N0OI-Hv6TxA" + }, + "WeVswPdqTKygWryd2oIMYA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-media-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "mda", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-media-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-media", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-media", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a54a5d20294ad541fafa" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a54a5d20294ad541fafa" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-media-e10s", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "WeVswPdqTKygWryd2oIMYA" + }, + "Wgl4bzxGQvGEAnWvcZq8Kg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-7", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Wgl4bzxGQvGEAnWvcZq8Kg" + }, + "WgqVax1IQyGQkk9_bPxcQg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.312efeed0518da385ae9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.312efeed0518da385ae9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WgqVax1IQyGQkk9_bPxcQg" + }, + "WhRzdmjWSJS3bntf6IEJ4g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.43f948d68c8fee53e56d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.43f948d68c8fee53e56d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "WhRzdmjWSJS3bntf6IEJ4g" + }, + "Wha1-HknR4Skfc762hJEpg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "48", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-48", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 48, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "48", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-48", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=48", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fa1b65e8ccc72e623fa3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fa1b65e8ccc72e623fa3" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-48", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Wha1-HknR4Skfc762hJEpg" + }, + "WiFVvcjVR9mqDbYtgOUxzw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=a11y", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=a11y" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e869d7f4df4382a7dcaa" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e869d7f4df4382a7dcaa" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-a11y", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "WiFVvcjVR9mqDbYtgOUxzw" + }, + "WiVupqEBRXS4z27xJx-bgg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-2", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "WiVupqEBRXS4z27xJx-bgg" + }, + "WjG9VM63R3eWzpVUAJl65w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "mda3", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5d9ac3286906b32274de" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5d9ac3286906b32274de" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-media-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WjG9VM63R3eWzpVUAJl65w" + }, + "WkBj4aBxTKeFMnk-8eCTpA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "gl6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-webgl-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "WkBj4aBxTKeFMnk-8eCTpA" + }, + "WkH9laCZTYmc10I1F4Nn2A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0bf87b485a8c995c89ed" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0bf87b485a8c995c89ed" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WkH9laCZTYmc10I1F4Nn2A" + }, + "Wko2KUAQT9SYfFA7kVmtrQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-clipboard", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-clipboard", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-plain-clipboard", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.de5124d74a69ae49db34" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.de5124d74a69ae49db34" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-clipboard", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Wko2KUAQT9SYfFA7kVmtrQ" + }, + "Wl4E30YmRH62e6wsm-StiA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-marionette-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "Wl4E30YmRH62e6wsm-StiA" + }, + "WmYzMgvPRHehn5NDJfcdnQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg", + "build-signing": "LmafDvzCSiS4f5wiMFn0KA" + }, + "kind": "repackage", + "label": "repackage-linux-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "IIQOnLdoTueU9hBgwCPS7Q", + "LmafDvzCSiS4f5wiMFn0KA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'linux-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-linux-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/target.complete.mar": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/artifacts/target.complete.mar", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux-devedition-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/repackage.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "JOB_SCRIPT": "taskcluster/scripts/builder/repackage.sh", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "download_input setup repackage", + "MOZHARNESS_CONFIG": "repackage/linux64_signed.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/repackage.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SIGNED_INPUT": "https://queue.taskcluster.net/v1/task/LmafDvzCSiS4f5wiMFn0KA/artifacts/public/build/target.tar.bz2", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/host/bin/mar" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux-devedition-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-devedition-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux-devedition-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux-devedition-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "docker-worker:cache:level-3-maple-build-linux-devedition-nightly-opt-workspace-repackage-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-linux-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "WmYzMgvPRHehn5NDJfcdnQ" + }, + "WpzVMtaKTtuI2CHg3U3feA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=8" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d0068498ecd833573e58" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d0068498ecd833573e58" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "WpzVMtaKTtuI2CHg3U3feA" + }, + "WqnKTFtST8Wexjx-MC-vHg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a57e718372a206febccf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a57e718372a206febccf" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WqnKTFtST8Wexjx-MC-vHg" + }, + "Wu3wvFnbRSqLLWfyT6woDQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bd2f1c026a6ed9383bfe" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bd2f1c026a6ed9383bfe" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Wu3wvFnbRSqLLWfyT6woDQ" + }, + "WvQMERidRKKGleT8FlaTuw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c866c2bc32fef4cf7af7" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c866c2bc32fef4cf7af7" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-chrome-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "WvQMERidRKKGleT8FlaTuw" + }, + "WvYASnLRQkaQlB8HBahyPg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "WvYASnLRQkaQlB8HBahyPg" + }, + "WvqXiVfGS_CVGrJ_LsD_nQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "18", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-18", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 18, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R18", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-18", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=18", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.04691deca0379839ae27" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.04691deca0379839ae27" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-18", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WvqXiVfGS_CVGrJ_LsD_nQ" + }, + "WwgiwYYoTp2zmL0y8fTWqA": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "WwgiwYYoTp2zmL0y8fTWqA" + }, + "WwsbNMCSTWqp0j8bQ8FhrQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fefde95a8899294babd3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fefde95a8899294babd3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "WwsbNMCSTWqp0j8bQ8FhrQ" + }, + "WxETU13HQGicbV3aVMh_sQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "WxETU13HQGicbV3aVMh_sQ" + }, + "WykbLC81SYOre0NGq0fE-A": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "WykbLC81SYOre0NGq0fE-A" + }, + "X-sRyMO2RNeljSUWsczizQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "X-sRyMO2RNeljSUWsczizQ" + }, + "X2BjbNwyQoiCoigarFSAmA": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw", + "build-signing": "CvNsImdcQTSRGXvNOkgByg" + }, + "kind": "repackage", + "label": "repackage-win64-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "CvNsImdcQTSRGXvNOkgByg", + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'win64-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-win64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.installer.exe", + "path": "public/build/target.installer.exe", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.complete.mar", + "path": "public/build/target.complete.mar", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\repackage.py --config repackage\\win64_signed.py --work-dir %cd:Z:=z:%\\build --download_input --setup --repackage" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "SIGNED_SETUP": "https://queue.taskcluster.net/v1/task/CvNsImdcQTSRGXvNOkgByg/artifacts/public/build/setup.exe", + "SIGNED_ZIP": "https://queue.taskcluster.net/v1/task/CvNsImdcQTSRGXvNOkgByg/artifacts/public/build/target.zip", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/host/bin/mar.exe" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win64-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win64-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win64-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win64-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win64-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-win64-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "X2BjbNwyQoiCoigarFSAmA" + }, + "X3fRRX-NTSGvyEaeKZDICg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.19d0e1f2c0ce243ef1c0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.19d0e1f2c0ce243ef1c0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "X3fRRX-NTSGvyEaeKZDICg" + }, + "X7bbs59aRIK-h4tczIsYiA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.71e559ac640bb7dbf4d0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.71e559ac640bb7dbf4d0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "X7bbs59aRIK-h4tczIsYiA" + }, + "X7eMmLz-QeSh5Xdkcs9k2w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0068be1199e594e0f554" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0068be1199e594e0f554" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "X7eMmLz-QeSh5Xdkcs9k2w" + }, + "X9V6N_BwS3ScAAQBouLzpQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Rg5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-gpu-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "X9V6N_BwS3ScAAQBouLzpQ" + }, + "X9p0qYnuTj6YyB8GSTZfqw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1b91359287ed6676a531" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1b91359287ed6676a531" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-firefox-ui-functional-remote-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "X9p0qYnuTj6YyB8GSTZfqw" + }, + "XA93xULOQI-2gyUFtzKtaQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=cppunittest", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.801b73eac33b466a1f4c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.801b73eac33b466a1f4c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XA93xULOQI-2gyUFtzKtaQ" + }, + "XFUTRlCZRL-NRWF6ADPPig": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5f8c53fb4e9080aea2f6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5f8c53fb4e9080aea2f6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XFUTRlCZRL-NRWF6ADPPig" + }, + "XGJf5QMoQf6u-PDtqhQ74Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "43", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-43", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 43, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R43", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-43", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=43", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.63c958b4acf54228a218" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.63c958b4acf54228a218" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-43", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XGJf5QMoQf6u-PDtqhQ74Q" + }, + "XH1CmNA6RB-1D7Q_QJMd7g": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-clipboard-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XH1CmNA6RB-1D7Q_QJMd7g" + }, + "XHlXce8PQX2gSWgY-_WuOQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e9c30e31797b6e7bde9c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e9c30e31797b6e7bde9c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XHlXce8PQX2gSWgY-_WuOQ" + }, + "XIp1l5UJSlWh2ViQ_1QezQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "telemetry-tests-client", + "unittest_suite": "telemetry-tests-client", + "unittest_try_name": "telemetry-tests-client-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-telemetry-tests-client-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "telemetry-tests-client", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "tc-e10s", + "tier": 3 + } + }, + "metadata": { + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-telemetry-tests-client-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/checkouts/gecko", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "remove_executables.py", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.097bc10a95a0f4618a4c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.097bc10a95a0f4618a4c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-telemetry-tests-client-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XIp1l5UJSlWh2ViQ_1QezQ" + }, + "XJT7BFs5Rd6QwMmpMgS8fQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-2", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "XJT7BFs5Rd6QwMmpMgS8fQ" + }, + "XLgpFHt8T9SE2XZHtrA-Iw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=13" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.35490bc2a69d37102893" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.35490bc2a69d37102893" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XLgpFHt8T9SE2XZHtrA-Iw" + }, + "XMMYmYloQ2C-PW8qs1-oPg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7e90210772a26c9fa9fe" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7e90210772a26c9fa9fe" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XMMYmYloQ2C-PW8qs1-oPg" + }, + "XMNK_-fuRXqhBZfWPdzfOQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "33", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-33", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 33, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "33", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-33", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=33", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ac581a15df660f4e30ed" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ac581a15df660f4e30ed" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-33", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XMNK_-fuRXqhBZfWPdzfOQ" + }, + "XM_UMcc-RPqzQNoAT2_tbA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XM_UMcc-RPqzQNoAT2_tbA" + }, + "XN-svDkSQgexKL-HhoOyzA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R15", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=15", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.643206579056d5562377" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.643206579056d5562377" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-15", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XN-svDkSQgexKL-HhoOyzA" + }, + "XP18qX5VRKGinAdVZhhQqg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2771e4728d665f381467" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2771e4728d665f381467" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XP18qX5VRKGinAdVZhhQqg" + }, + "XPBskbumTvCVoxgkPV8ZAw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "XPBskbumTvCVoxgkPV8ZAw" + }, + "XQXiIbBdSdesSdF03np9Mg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R16", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b657499811742a0606ae" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b657499811742a0606ae" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-16", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XQXiIbBdSdesSdF03np9Mg" + }, + "XQd6-lJ5TxW7dWrhy4zPJg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XQd6-lJ5TxW7dWrhy4zPJg" + }, + "XS4GpzqmTcKCR-_RnCWnGg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d7c351bd9122e04312b4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d7c351bd9122e04312b4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XS4GpzqmTcKCR-_RnCWnGg" + }, + "XScyPAOWQb-kjcwAp1YvdA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.92dde6e1a150ae16d4fd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.92dde6e1a150ae16d4fd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XScyPAOWQb-kjcwAp1YvdA" + }, + "XSi55K4iQyKcnRlUlH53fg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c2c017327e3c596efe83" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c2c017327e3c596efe83" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XSi55K4iQyKcnRlUlH53fg" + }, + "XT4G09pPSoivbJtKm-gyCw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.732fdc6a90af20a5207e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.732fdc6a90af20a5207e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XT4G09pPSoivbJtKm-gyCw" + }, + "XUfCzSmfSrCgnigmMOVk2A": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f762775e97f67c3a1038" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f762775e97f67c3a1038" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XUfCzSmfSrCgnigmMOVk2A" + }, + "XUmkuvHvQImpfA70pI_1Bw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d80cac5efbf63d5ebd5b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d80cac5efbf63d5ebd5b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XUmkuvHvQImpfA70pI_1Bw" + }, + "XV9BGdl4RiS0SUTE1Cz-jA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-8", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XV9BGdl4RiS0SUTE1Cz-jA" + }, + "XXZdyO_JReywtad2-G9baQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XXZdyO_JReywtad2-G9baQ" + }, + "XYTAzokLQNuBFu6v4wCF4Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "rc3", + "tier": 1 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-robocop-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7abb9ce7dd89be61e168" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7abb9ce7dd89be61e168" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XYTAzokLQNuBFu6v4wCF4Q" + }, + "XZ9YeZtxTqy7otsT7F7PPA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=9" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-9", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "XZ9YeZtxTqy7otsT7F7PPA" + }, + "X_JzvcHtStOVYLNXbtDMIg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d7536e52f8b27b668e94" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d7536e52f8b27b668e94" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "X_JzvcHtStOVYLNXbtDMIg" + }, + "XaZQTRVpTlq6vtbhRg9W-A": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --headless --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --headless --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-marionette-headless-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XaZQTRVpTlq6vtbhRg9W-A" + }, + "Xcs3qPNYRi-8BJOQSWNDwg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fbd966e04c762ce30385" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fbd966e04c762ce30385" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Xcs3qPNYRi-8BJOQSWNDwg" + }, + "XdUZYkFhREeCG4LDu8ua1g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6592c3ed234a15579cfa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6592c3ed234a15579cfa" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XdUZYkFhREeCG4LDu8ua1g" + }, + "XdklspzjR4uMUwhGU64dnQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.596a15b51210a6d23f49" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.596a15b51210a6d23f49" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XdklspzjR4uMUwhGU64dnQ" + }, + "XhwDVKmjRRG-snwIzUoXMw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "XhwDVKmjRRG-snwIzUoXMw" + }, + "XiOtuHeATaGLYwkmd_kXsw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cc1ea3570a578dff9a69" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cc1ea3570a578dff9a69" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-marionette-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XiOtuHeATaGLYwkmd_kXsw" + }, + "XjK-paT8RxyLyISYCYVOtg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "12", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.85140d0017241cd0bc4a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.85140d0017241cd0bc4a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XjK-paT8RxyLyISYCYVOtg" + }, + "XliJcpnlTTmBvWKKb3De-w": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2041267912d6d167b3c8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2041267912d6d167b3c8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XliJcpnlTTmBvWKKb3De-w" + }, + "XmmbDcktTEGV7Yt2BiXviw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Wr5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.007e739c4de7f8d33c43" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.007e739c4de7f8d33c43" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XmmbDcktTEGV7Yt2BiXviw" + }, + "Xnl17CP2TjuFNz_MsIwkVQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a295d5ecc028d10fa696" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a295d5ecc028d10fa696" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Xnl17CP2TjuFNz_MsIwkVQ" + }, + "XoA5vRROSoyXqBDZ8tfFEQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--tag", + "local", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.105d1d71befe3d451a28" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.105d1d71befe3d451a28" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-firefox-ui-functional-local-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XoA5vRROSoyXqBDZ8tfFEQ" + }, + "XoXB4l5sR5mqMDoupiRm6w": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XoXB4l5sR5mqMDoupiRm6w" + }, + "Xouc3xv4RXCkWo2ZVXgQ5w": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0723771e2624dafd8364" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0723771e2624dafd8364" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Xouc3xv4RXCkWo2ZVXgQ5w" + }, + "Xp-77khZT9CRpi92cHJonw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=11" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-11", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Xp-77khZT9CRpi92cHJonw" + }, + "XpMtGkt7TkOTijYY8MJWwA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9e0fbb56cde32f48ceff" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9e0fbb56cde32f48ceff" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "XpMtGkt7TkOTijYY8MJWwA" + }, + "Xri7Hk0YSBKx44IFOWWvxQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6c5c3a264cd154d4168c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6c5c3a264cd154d4168c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Xri7Hk0YSBKx44IFOWWvxQ" + }, + "XtcUWsvOQoa_V9ih0wT_1w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0121b4aa32ca97fe0285" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0121b4aa32ca97fe0285" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XtcUWsvOQoa_V9ih0wT_1w" + }, + "XtjE7oqBTUKPp9c4Cofhiw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=12" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-12", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "XtjE7oqBTUKPp9c4Cofhiw" + }, + "XvcIzp6pRAOwF-9Zw_cTwA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0245ec9cb6c42e91253b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0245ec9cb6c42e91253b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XvcIzp6pRAOwF-9Zw_cTwA" + }, + "XwxJALUhQySfuxEOmfFvhg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8b955cf9c32dcdf3799f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8b955cf9c32dcdf3799f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XwxJALUhQySfuxEOmfFvhg" + }, + "XxcsK1fgQmOAeuaSXOaDYw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ccb217fdccf2d7e273e9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ccb217fdccf2d7e273e9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XxcsK1fgQmOAeuaSXOaDYw" + }, + "XxfaGIWVQiCvRk-3Qc9HzQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.efe27b91d86df69a37ab" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.efe27b91d86df69a37ab" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XxfaGIWVQiCvRk-3Qc9HzQ" + }, + "Xxxuf8CXQaaLeQR5GiogGw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R3", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d3b08bc6945a9c74c8f6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d3b08bc6945a9c74c8f6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Xxxuf8CXQaaLeQR5GiogGw" + }, + "XyMua5DeSCWvRmkMpyDZNg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.516149cd2c71df17617e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.516149cd2c71df17617e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "XyMua5DeSCWvRmkMpyDZNg" + }, + "Xys1i1ZKQB24Bx6BHLuTuA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.119601b1c2ce4f05c3f2" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.119601b1c2ce4f05c3f2" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Xys1i1ZKQB24Bx6BHLuTuA" + }, + "XywhsUnRRFeZJq7mKALdQw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=6" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0e8c0536fdf75faa976b" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0e8c0536fdf75faa976b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-6", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "XywhsUnRRFeZJq7mKALdQw" + }, + "Y0uJ5QAxTRCQuvevyd9DZw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "Y0uJ5QAxTRCQuvevyd9DZw" + }, + "Y10HiN8hQuyLUb1x-GeaWA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "c2", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=2", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.758000347e124d6e2b24" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.758000347e124d6e2b24" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Y10HiN8hQuyLUb1x-GeaWA" + }, + "Y1DBUXxsTciu_gtrDFurPQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6a32e7bb81410404d298" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6a32e7bb81410404d298" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Y1DBUXxsTciu_gtrDFurPQ" + }, + "Y49BqPUcTxmDwWfD7rSBiw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "Y49BqPUcTxmDwWfD7rSBiw" + }, + "Y4_EpzuIQR6ayVnPoj5cKA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6711c45d4ed2a4779d77" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6711c45d4ed2a4779d77" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Y4_EpzuIQR6ayVnPoj5cKA" + }, + "Y5k59gj6SIqYkfNDzEKIxg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8776bc55321e9f969397" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8776bc55321e9f969397" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Y5k59gj6SIqYkfNDzEKIxg" + }, + "Y6H8RnSmSP-t027EoeeIKw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c203d771c6db894567f6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c203d771c6db894567f6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Y6H8RnSmSP-t027EoeeIKw" + }, + "Y87yP53mQMCCw61H4NMTXQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "kind": "upload-symbols", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "upload-symbols", + "label": "build-win64-devedition-nightly/opt-upload-symbols", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64-devedition" + }, + "symbol": "SymN", + "tier": 1 + } + }, + "metadata": { + "description": "Upload Symbols ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win64-devedition-nightly/opt-upload-symbols", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-symbols" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-symbols", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python toolkit/crashreporter/tools/upload_symbols.py https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip\n" + ], + "env": { + "ARTIFACT_TASKID": "EQ7BHnMjQ7-laAYNB87oQg", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "SYMBOL_SECRET": "project/releng/gecko/build/level-3/gecko-symbol-upload", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 900 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-symbol-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-symbols", + "label": "build-win64-devedition-nightly/opt-upload-symbols", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "Y87yP53mQMCCw61H4NMTXQ" + }, + "Y8c_R8yjQ926gPvkywtYkw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "3", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f9966ce76cddabfdf56e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f9966ce76cddabfdf56e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Y8c_R8yjQ926gPvkywtYkw" + }, + "YAIcRK2QSaKsKzsQ9n6nhg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bba8d5245a3205fe6dcc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bba8d5245a3205fe6dcc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YAIcRK2QSaKsKzsQ9n6nhg" + }, + "YApd4c7TTVCylYAcuMn5yg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9d75820c3a0249e65921" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9d75820c3a0249e65921" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YApd4c7TTVCylYAcuMn5yg" + }, + "YB6sNdFwRdWYQYvcytgm1Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2d159711be4469719dfd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2d159711be4469719dfd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YB6sNdFwRdWYQYvcytgm1Q" + }, + "YBSaYrpUS32BL53jHgRD7g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e372ccf1d320f370d51f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e372ccf1d320f370d51f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YBSaYrpUS32BL53jHgRD7g" + }, + "YBqz7Le_SlqD4DE5DseqNw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dddbbf34ee82b5ebd1d8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dddbbf34ee82b5ebd1d8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YBqz7Le_SlqD4DE5DseqNw" + }, + "YCwf-MboQdW0Qqqk_4vdpQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=a11y --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=a11y" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-a11y", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "YCwf-MboQdW0Qqqk_4vdpQ" + }, + "YDgGax3oQoeHhohf2oC2qw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "C4", + "tier": 2 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.50615e7567d63eaac497" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.50615e7567d63eaac497" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YDgGax3oQoeHhohf2oC2qw" + }, + "YDxN70qxQPKrGXm9xb_NdA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "YDxN70qxQPKrGXm9xb_NdA" + }, + "YHKJYmMqTKS7HwmFNac4rA": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "YHKJYmMqTKS7HwmFNac4rA" + }, + "YHs5Rd_5S7SJZX_K6keKww": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f01cf293a7d867a2a703" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f01cf293a7d867a2a703" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YHs5Rd_5S7SJZX_K6keKww" + }, + "YIxFhJiCQ4O22KWsI4kBjg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-browser-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "YIxFhJiCQ4O22KWsI4kBjg" + }, + "YJU9ibjWSIm4HErk7r2SHw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.78ae2c2f042067c4b180" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.78ae2c2f042067c4b180" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YJU9ibjWSIm4HErk7r2SHw" + }, + "YKy2PFdoRzaKm1ie3KHHyw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-4", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "YKy2PFdoRzaKm1ie3KHHyw" + }, + "YLRVg6HOSFi1h26TmPNawg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.649c31665ae2484df73c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.649c31665ae2484df73c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YLRVg6HOSFi1h26TmPNawg" + }, + "YNpbJyAOQbGcZ6mQ8uC3hw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9ac1130aa99e1ebb2aec" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9ac1130aa99e1ebb2aec" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YNpbJyAOQbGcZ6mQ8uC3hw" + }, + "YNuI4Os3SJi0u33ATAoCMw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.10d1736faaa6dac3b3b0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.10d1736faaa6dac3b3b0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YNuI4Os3SJi0u33ATAoCMw" + }, + "YOGHymEIQxOzKF-BVzmLQw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e4d2318b915bf3d7a063" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e4d2318b915bf3d7a063" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YOGHymEIQxOzKF-BVzmLQw" + }, + "YONKEl9eSXKrCdlh5hddYA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "devedition" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux64-devedition-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-linux64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux64-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YONKEl9eSXKrCdlh5hddYA" + }, + "YQPmfX9vQn2w_4CGmD83Iw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "YQPmfX9vQn2w_4CGmD83Iw" + }, + "YQjKqBhnTeyg9BKa_UCpQg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f26dc258b9fb32bfadab" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f26dc258b9fb32bfadab" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YQjKqBhnTeyg9BKa_UCpQg" + }, + "YQsqdIJaQwa-GpjJ9UkqUQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ee5c11fbe43fce2cdf33" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ee5c11fbe43fce2cdf33" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YQsqdIJaQwa-GpjJ9UkqUQ" + }, + "YRmpeWuFTEqHBmZFyp-PbQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "44", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-44", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 44, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R44", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-44", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=44", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a9140031ddf042a80c5a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a9140031ddf042a80c5a" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-44", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YRmpeWuFTEqHBmZFyp-PbQ" + }, + "YSKu2PcDQl-HBtCTVvevYA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "2", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6a2e825fb4007c45ba9c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6a2e825fb4007c45ba9c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YSKu2PcDQl-HBtCTVvevYA" + }, + "YSre0V05Rz-UooaBujrhDA": { + "attributes": { + "always_target": true, + "job_try_name": "yaml", + "kind": "source-test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "source-test", + "label": "source-test-mozlint-yaml", + "optimization": { + "skip-unless-changed": [ + "python/mozlint/**", + "tools/lint/**", + "**/*.yml", + "**/*.yaml", + "**/.ymllint", + "taskcluster/ci/source-test/**", + "taskcluster/docker/lint/**" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "test", + "machine": { + "platform": "lint" + }, + "symbol": "yaml", + "tier": 1 + } + }, + "metadata": { + "description": "yamllint run over the gecko codebase ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "source-test-mozlint-yaml", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/source-test" + }, + "payload": { + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach lint -l yaml -f treeherder" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 1800 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "source-test", + "label": "source-test-mozlint-yaml", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YSre0V05Rz-UooaBujrhDA" + }, + "YU4Fz-e2SFKbJv6M_pQ0dA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=10" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.de7e6a779c34fbeef625" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.de7e6a779c34fbeef625" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-10", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "YU4Fz-e2SFKbJv6M_pQ0dA" + }, + "YW3LlqKoQ2CEfOxOH3hOjw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "YW3LlqKoQ2CEfOxOH3hOjw" + }, + "YXV6jL7kQIOvmrn9T1UvWQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "YXV6jL7kQIOvmrn9T1UvWQ" + }, + "YY7fyI75SWa9-Q0ld4umZQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.201137ecdbf04f3cfa5b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.201137ecdbf04f3cfa5b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YY7fyI75SWa9-Q0ld4umZQ" + }, + "YYgmPmqTT6uRNN44I0zHMA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-devedition-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "mozilla-beta" + ], + "shipping_phase": "build", + "shipping_product": "devedition" + }, + "dependencies": {}, + "kind": "build", + "label": "build-macosx64-devedition-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "FJ8BwxDbQU23Q6DzXGC2hA", + "FzokDPkGT7uIQ5tleaGBfA", + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "MNl-65MNRDOXQcncoy40LQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "cUKYM4gsS3KZuHKOYHjJqw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "osx-cross-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "MacOS X Dev Edition x64 Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-macosx64-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-macosx64-devedition-nightly-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "devedition", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py disable_signing.py taskcluster_nightly.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@MNl-65MNRDOXQcncoy40LQ public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/hfsplus-tools.tar.xz@FJ8BwxDbQU23Q6DzXGC2hA public/build/dmg.tar.xz@FzokDPkGT7uIQ5tleaGBfA public/build/rustc.tar.xz@cUKYM4gsS3KZuHKOYHjJqw public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.devedition.macosx64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.macosx64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.devedition.macosx64-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition.macosx64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.devedition-l10n.macosx64-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.devedition-l10n.macosx64-opt.en-US", + "index.gecko.v2.maple.latest.devedition-l10n.macosx64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-macosx64-devedition-nightly-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-macosx64-devedition-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-macosx64" + }, + "task_id": "YYgmPmqTT6uRNN44I0zHMA" + }, + "Y_cJluAIQ-S4eqGQHvqRnw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.308203a5720035907e57" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.308203a5720035907e57" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Y_cJluAIQ-S4eqGQHvqRnw" + }, + "Y_oEbCnbQiiFmEtF3YokEQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4c43c13bef94ad107750" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4c43c13bef94ad107750" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Y_oEbCnbQiiFmEtF3YokEQ" + }, + "YbFzYsrlQnCuiSGlgfZTiQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox" + }, + "dependencies": {}, + "kind": "build", + "label": "build-win32-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Win32 Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win32-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win32.py --config builds\\taskcluster_sub_win32\\opt.py --config disable_signing.py --config taskcluster_nightly.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --clone-tools --build --check-test --update --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win32-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win32-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win32-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win32-opt.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win32-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win32-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "YbnZggB1RtKB7NnhtDAYig": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c0d60e8dddd28fbe7b6f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c0d60e8dddd28fbe7b6f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YbnZggB1RtKB7NnhtDAYig" + }, + "Yc5dqkuXSma_sAHZEpq6Xg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e0eab4373d07391790c3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e0eab4373d07391790c3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Yc5dqkuXSma_sAHZEpq6Xg" + }, + "Ydi_vKcSSVuyGUOoQ0o4MQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe23e7f30e742653296c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe23e7f30e742653296c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-browser-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Ydi_vKcSSVuyGUOoQ0o4MQ" + }, + "YdpzcUs-SUGxoKGK-3RVTQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "46", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-46", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 46, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "46", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-46", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=46", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6ffd7c3a5a17f8a7b181" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6ffd7c3a5a17f8a7b181" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-46", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YdpzcUs-SUGxoKGK-3RVTQ" + }, + "Yfij2MkZR0SEkDaEIcwqOA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.64db1bbbf1a38fe66b12" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.64db1bbbf1a38fe66b12" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Yfij2MkZR0SEkDaEIcwqOA" + }, + "YfvuLxZgTdGsMvmEhzpNkw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "YfvuLxZgTdGsMvmEhzpNkw" + }, + "Yg3guwWRQm-ml4qsawUn8g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3bfc6d34d694dc291570" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3bfc6d34d694dc291570" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Yg3guwWRQm-ml4qsawUn8g" + }, + "YghnYySiQF6veitCpX33rw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cd9f9fef43733122d742" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cd9f9fef43733122d742" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YghnYySiQF6veitCpX33rw" + }, + "YlCebOLhQzmGpxF-8Mv0gA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "marionette.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.73085d2fb54bc863ee96" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.73085d2fb54bc863ee96" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-marionette-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YlCebOLhQzmGpxF-8Mv0gA" + }, + "YljyAs4BRTW5yx4IX0cX1g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.32d4be2dc8b86b3dad36" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.32d4be2dc8b86b3dad36" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YljyAs4BRTW5yx4IX0cX1g" + }, + "YmkgaT-CT8G5umWyfTo5UQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "YmkgaT-CT8G5umWyfTo5UQ" + }, + "YnOJNhkXSXSuj0jf_WaH1Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b1aa8de048e2c210ac60" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b1aa8de048e2c210ac60" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YnOJNhkXSXSuj0jf_WaH1Q" + }, + "YnbCi-y4T3OckNH1a8esWg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9c4269dc3475c9be5cd6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9c4269dc3475c9be5cd6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YnbCi-y4T3OckNH1a8esWg" + }, + "YngDz1ELQoKIRP-6jvX0dA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.522ca1a1b6e2a3a5d03d" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.522ca1a1b6e2a3a5d03d" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-3", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "YngDz1ELQoKIRP-6jvX0dA" + }, + "Yo8s15jCRmebRJwQoTd7Qg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-reftest-no-accel-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-reftest-no-accel-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit DevEdition maple opt test reftest-no-accel-e10s", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.943742c26bc6b7f69ea0" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-reftest-no-accel-e10s", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "Yo8s15jCRmebRJwQoTd7Qg" + }, + "Yr0gikQUQbiSgODLdJG0hQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0b2f45140ccd23959917" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0b2f45140ccd23959917" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Yr0gikQUQbiSgODLdJG0hQ" + }, + "YrlEYu34QBKM0eqNRISY0Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3d595f4d40606dfe9793" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3d595f4d40606dfe9793" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-4", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "YrlEYu34QBKM0eqNRISY0Q" + }, + "YrtoTLEBTy-Z4x1kFNR71g": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "YrtoTLEBTy-Z4x1kFNR71g" + }, + "YsPfb-kjRma77qe-LYOURA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.deb203cc3dbb6a25d3ba" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.deb203cc3dbb6a25d3ba" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-11", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YsPfb-kjRma77qe-LYOURA" + }, + "YtRs8cfGTKyw9SsgNOMMFQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.86cef642b7da2576e27d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.86cef642b7da2576e27d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "YtRs8cfGTKyw9SsgNOMMFQ" + }, + "Yuvt_4GBTh-MnYaTFLvehA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1cc49d409e8ada12ace0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1cc49d409e8ada12ace0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Yuvt_4GBTh-MnYaTFLvehA" + }, + "YxovCTQOTH6pyoj-tadBAQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4edc66c9e78ecd91a173" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4edc66c9e78ecd91a173" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YxovCTQOTH6pyoj-tadBAQ" + }, + "YyOPp_ESSY2-bczKJ1jYAg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a7bb9ba583e1e1717bcc" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a7bb9ba583e1e1717bcc" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "YyOPp_ESSY2-bczKJ1jYAg" + }, + "Z54LEm2WQKaCX98xY-kDnA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c511cbd3ae8ece905685" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c511cbd3ae8ece905685" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Z54LEm2WQKaCX98xY-kDnA" + }, + "Z5hA-7YtRo2nY_pCk37qvg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/marionette.py", + "--cfg", + "mozharness/configs/marionette/prod_config.py", + "--cfg", + "mozharness/configs/marionette/mac_taskcluster_config.py", + "--headless", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--headless", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.971624a24669f95a0313" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.971624a24669f95a0313" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-marionette-headless-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Z5hA-7YtRo2nY_pCk37qvg" + }, + "Z731npGhTEWaCyTmS5FKow": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8f21cc9543e6f6f8809f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8f21cc9543e6f6f8809f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Z731npGhTEWaCyTmS5FKow" + }, + "Z77TLDP1T-GVnjiidwn7ag": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d4bfb9980c9aea74a959" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d4bfb9980c9aea74a959" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Z77TLDP1T-GVnjiidwn7ag" + }, + "ZAcq_4L1Qia71MrnLPDfcQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "bc3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a8d21c5a3fc4e3817a74" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a8d21c5a3fc4e3817a74" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-browser-chrome-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "ZAcq_4L1Qia71MrnLPDfcQ" + }, + "ZAnBJF6vQwevaxyitnBKVQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.54394ee5771b3a05ddc0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.54394ee5771b3a05ddc0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZAnBJF6vQwevaxyitnBKVQ" + }, + "ZBf2A7wWT3q9QeW9BK_LaQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Wr2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1136a9cad08b4dc238e5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1136a9cad08b4dc238e5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZBf2A7wWT3q9QeW9BK_LaQ" + }, + "ZCDFY7s-QVOz3SsSLN1Qjw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "ZCDFY7s-QVOz3SsSLN1Qjw" + }, + "ZDHaAgbsSv6bAScj7q5mgg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "ZDHaAgbsSv6bAScj7q5mgg" + }, + "ZEMmdbCISxacd0HNEpqzfQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "ZEMmdbCISxacd0HNEpqzfQ" + }, + "ZEkjW4BbTZKfWqa_WPa0IQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2bc83553e007ee0a2057" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2bc83553e007ee0a2057" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZEkjW4BbTZKfWqa_WPa0IQ" + }, + "ZExWnVjaSu-T6oDhoRqN2Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "13", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=13", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.766fb036604b9d185491" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.766fb036604b9d185491" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZExWnVjaSu-T6oDhoRqN2Q" + }, + "ZF06Q807ThSzIgdleLMegA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ", + "build-signing": "Cuw8Gni7Shy76nRCvgSWIA", + "repackage": "ebU5lC1dTRiOwhXcV_oY4g" + }, + "kind": "repackage-signing", + "label": "repackage-signing-win32-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Cuw8Gni7Shy76nRCvgSWIA", + "YbFzYsrlQnCuiSGlgfZTiQ", + "ebU5lC1dTRiOwhXcV_oY4g" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'win32-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-win32-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "ebU5lC1dTRiOwhXcV_oY4g", + "taskType": "repackage" + }, + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/target.installer.exe" + ], + "taskId": "ebU5lC1dTRiOwhXcV_oY4g", + "taskType": "repackage" + }, + { + "formats": [ + "sha2signcodestub" + ], + "paths": [ + "public/build/target.stub-installer.exe" + ], + "taskId": "ebU5lC1dTRiOwhXcV_oY4g", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win32-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win32-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win32-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win32-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win32-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:mar_sha384", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:sha2signcodestub" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-win32-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "ZF06Q807ThSzIgdleLMegA" + }, + "ZFk2qPSuQwuYJAzFf166Pg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3d1f7f3947c51cab3299" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3d1f7f3947c51cab3299" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZFk2qPSuQwuYJAzFf166Pg" + }, + "ZGI6HTnuRwCnILIu9GGZ_g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a5d2ae6cfbb8575f71f4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a5d2ae6cfbb8575f71f4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZGI6HTnuRwCnILIu9GGZ_g" + }, + "ZGdFsrb-Sd6THiac9dPPdw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-media-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-media-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fd1845b39f35782ef935" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fd1845b39f35782ef935" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-media-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZGdFsrb-Sd6THiac9dPPdw" + }, + "ZH4fxROVR7qVhddNWUSBQA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.882c320bb5d0621ab812" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.882c320bb5d0621ab812" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZH4fxROVR7qVhddNWUSBQA" + }, + "ZHReBAuTQGmCWD9nWwvTLQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8a37db4f601024e988ee" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8a37db4f601024e988ee" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZHReBAuTQGmCWD9nWwvTLQ" + }, + "ZMGzDLyvTpy40J7brPTCgg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-4", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "ZMGzDLyvTpy40J7brPTCgg" + }, + "ZR0gOfoqQC2LwsQ0SdjAZQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "telemetry-tests-client", + "unittest_suite": "telemetry-tests-client", + "unittest_try_name": "telemetry-tests-client-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-telemetry-tests-client-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "telemetry-tests-client", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "tc-e10s", + "tier": 3 + } + }, + "metadata": { + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-telemetry-tests-client-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/checkouts/gecko", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "remove_executables.py", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d0d413ff28bcf06aa662" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d0d413ff28bcf06aa662" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-telemetry-tests-client-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZR0gOfoqQC2LwsQ0SdjAZQ" + }, + "ZR7fwgXfScaSqyGRIMn-iw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a84a84a175f8e5b27370" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a84a84a175f8e5b27370" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZR7fwgXfScaSqyGRIMn-iw" + }, + "ZSCMBa9kSeaIQ01S0E7evw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "19", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-19", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 19, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "19", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-19", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=19", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f9c577adfa4ba9ddc831" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f9c577adfa4ba9ddc831" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-19", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZSCMBa9kSeaIQ01S0E7evw" + }, + "ZSK_1m2QTbiL1dnvArT35g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn10", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b1fe4d6ad8353fe13515" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b1fe4d6ad8353fe13515" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZSK_1m2QTbiL1dnvArT35g" + }, + "ZT35PYUETzaIBIYUn49NGg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.415de071468bb80644cd" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.415de071468bb80644cd" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "ZT35PYUETzaIBIYUn49NGg" + }, + "ZVyM07tiRRmyJAVM-xx39A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R14", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.24d1edd4dba4f08c2d51" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.24d1edd4dba4f08c2d51" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-14", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZVyM07tiRRmyJAVM-xx39A" + }, + "ZWccGbYgQ0-wiehHDyV2mA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-media-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "ZWccGbYgQ0-wiehHDyV2mA" + }, + "ZYRSHk5-Rs64RmDeXqz_aQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bae36771e635c6c14d5c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bae36771e635c6c14d5c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZYRSHk5-Rs64RmDeXqz_aQ" + }, + "Z_JeNp2ZTJm13nr5MUkQLg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3ec7abedbc47b7ff7108" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3ec7abedbc47b7ff7108" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Z_JeNp2ZTJm13nr5MUkQLg" + }, + "ZcsKwCAuTYmj36PiaBrX5g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.29fbb18f807c48f36551" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.29fbb18f807c48f36551" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZcsKwCAuTYmj36PiaBrX5g" + }, + "Ze7SmPuaRmSnd-VPQWTqWA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.901c6e8de2a84a770594" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.901c6e8de2a84a770594" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-1", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Ze7SmPuaRmSnd-VPQWTqWA" + }, + "Zeefgk7cQ5CIRuEjhZMS0w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c84c34d01b9d5d0ab225" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c84c34d01b9d5d0ab225" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Zeefgk7cQ5CIRuEjhZMS0w" + }, + "Zfo9yVWyTzaPNdbKRmwufQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.70849a6d5fe92bb65268" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.70849a6d5fe92bb65268" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-gpu-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Zfo9yVWyTzaPNdbKRmwufQ" + }, + "ZgCqzhqZTuexM4hWnazvwA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.09bf5c262c931b485a51" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.09bf5c262c931b485a51" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZgCqzhqZTuexM4hWnazvwA" + }, + "ZiFOAhaSRlOhTNcjQBHR7A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7caf0f1d374c85b1d601" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7caf0f1d374c85b1d601" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZiFOAhaSRlOhTNcjQBHR7A" + }, + "ZiePuuGVTnaC5a9JFA83Og": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=cppunittest", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.29050028c61105e5e98c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.29050028c61105e5e98c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-cppunit", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZiePuuGVTnaC5a9JFA83Og" + }, + "Ziv28X7SQuan9dAoxA1wZw": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-e10s-1", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aa4c65c458ed8f73f30f" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-e10s-1", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "Ziv28X7SQuan9dAoxA1wZw" + }, + "Zj35lTfnS4ueyKkFnTjoqw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R8", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dd11652aec85826923c5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dd11652aec85826923c5" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Zj35lTfnS4ueyKkFnTjoqw" + }, + "Zke5AJOvSdKmYMrZf6bDWg": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=6", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c067d8d33b73b5b82b49" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c067d8d33b73b5b82b49" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Zke5AJOvSdKmYMrZf6bDWg" + }, + "ZlYpi1PETh28jUrPyBnNOA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a118558d93cfe26ec3eb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a118558d93cfe26ec3eb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-firefox-ui-functional-remote-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZlYpi1PETh28jUrPyBnNOA" + }, + "ZmDYBpCaTYiitEhIen-CDQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d427caae70c68ff96cfe" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d427caae70c68ff96cfe" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZmDYBpCaTYiitEhIen-CDQ" + }, + "ZmsfZo9oSqC41WvubDjp5g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "45", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-45", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 45, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R45", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-45", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=45", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.70048be68dd4744a1b16" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.70048be68dd4744a1b16" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-45", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZmsfZo9oSqC41WvubDjp5g" + }, + "Zn-qejS7QbmleSXBz571UQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux64-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "WunQZZApQ8K3u2DCcpbYjQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-linux64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-linux64-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Zn-qejS7QbmleSXBz571UQ" + }, + "Zp3mfCdQQ4uFdQEQrEjPeg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X1", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6f9253b81428daf54a08" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6f9253b81428daf54a08" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Zp3mfCdQQ4uFdQEQrEjPeg" + }, + "Zp5OCd0CRamLyx9dLNSBug": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.10dad01409253d959133" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.10dad01409253d959133" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Zp5OCd0CRamLyx9dLNSBug" + }, + "ZpFLevs7S8yyA4FnnNPH9A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R7", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c7620b98e67e94749434" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c7620b98e67e94749434" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZpFLevs7S8yyA4FnnNPH9A" + }, + "Zq14Uu-zRo-0-7eoWBOpBQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-reftest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "R", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-reftest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--reftest-suite=reftest", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--reftest-suite=reftest", + "--e10s", + "--total-chunk=1", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7973bed0204087198f33" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7973bed0204087198f33" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-reftest-e10s", + "os": "macosx", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Zq14Uu-zRo-0-7eoWBOpBQ" + }, + "ZrU6QFcoRimARQ1uEc7K1Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "26", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-26", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 26, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "26", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-26", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=26", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a994d7ab08279c628cdf" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a994d7ab08279c628cdf" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-26", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZrU6QFcoRimARQ1uEc7K1Q" + }, + "ZsQoa2mKRoWtzqjcw0iN4A": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fc9b5427cf0e3a8650cb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fc9b5427cf0e3a8650cb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-webgl-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZsQoa2mKRoWtzqjcw0iN4A" + }, + "Zt-DJFbDSFeDXDmEJmJPxA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2f60ed5bc5e1ebfc8949" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2f60ed5bc5e1ebfc8949" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Zt-DJFbDSFeDXDmEJmJPxA" + }, + "ZuuOAEZlRpOX6cfKn0vnHg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=12" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.65085ee8a724564076f1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.65085ee8a724564076f1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ZuuOAEZlRpOX6cfKn0vnHg" + }, + "Zvq4b8z9Tbu-9Bh-8m3frQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9693d81a6f1e33fd448c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9693d81a6f1e33fd448c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-reftest-no-accel-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Zvq4b8z9Tbu-9Bh-8m3frQ" + }, + "Zw3E3tlIRG2ufALdJNnoAg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8d75b37ce3c59185a262" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8d75b37ce3c59185a262" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-4", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "Zw3E3tlIRG2ufALdJNnoAg" + }, + "ZwhXVysWTyiLPH8wckY3Cw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2266eabc8106db2738f8" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2266eabc8106db2738f8" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-chrome-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "ZwhXVysWTyiLPH8wckY3Cw" + }, + "Zwz3NZ33Sn66Ix3lu8dvww": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.685c2be6bcfbfce3c17b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.685c2be6bcfbfce3c17b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Zwz3NZ33Sn66Ix3lu8dvww" + }, + "ZxZC4OOjTNqnO4zWU8Z4wg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bcac4055a3f94972f20a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bcac4055a3f94972f20a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZxZC4OOjTNqnO4zWU8Z4wg" + }, + "Zxz90t6qR_-iGLfLZKPcOw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ff14b3fb873ea1a3638e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ff14b3fb873ea1a3638e" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "Zxz90t6qR_-iGLfLZKPcOw" + }, + "ZyzmRl7FRHySD0m-LP0MQg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2eb87eed956327a1d657" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2eb87eed956327a1d657" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ZyzmRl7FRHySD0m-LP0MQg" + }, + "Zz1aOUQDRs6Dcg-38zoZsw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "functional local", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-local-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-firefox-ui-functional-local-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Firefox functional tests (local) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-l-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "en-US", + "tier": 1 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-firefox-ui-functional-local-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--tag", + "local", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.edfec8c489069f43c4e4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.edfec8c489069f43c4e4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-firefox-ui-functional-local-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "Zz1aOUQDRs6Dcg-38zoZsw" + }, + "a-4tQioaRQ6P4LV83QD6kQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.064fce3e1761c388fd6c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.064fce3e1761c388fd6c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "a-4tQioaRQ6P4LV83QD6kQ" + }, + "a0S0Nra2TMmakEMYDPMf0A": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.957ba93afb411e1a359a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.957ba93afb411e1a359a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "a0S0Nra2TMmakEMYDPMf0A" + }, + "a4Estz6mRJi4DHF5wK_RiA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-4", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "a4Estz6mRJi4DHF5wK_RiA" + }, + "a4hNOchyThqqBFs3R6i_4g": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X7", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e8417112a1b7ff3f7335" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e8417112a1b7ff3f7335" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "a4hNOchyThqqBFs3R6i_4g" + }, + "a5BlAE_QQvWlKK1LuSiBVw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-marionette-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "a5BlAE_QQvWlKK1LuSiBVw" + }, + "a5gYd3mVToS8ThbHuJ3R0Q": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-chrome-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "a5gYd3mVToS8ThbHuJ3R0Q" + }, + "a7Hmga-dRhCshdkERfkCuQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=reftest", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=reftest", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9d5b5e0f0ef29c0732dd" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9d5b5e0f0ef29c0732dd" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-reftests-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "a7Hmga-dRhCshdkERfkCuQ" + }, + "a8zQQSxfR8W5ExEPX1oWQw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.63b7d378bd5ea80e403c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.63b7d378bd5ea80e403c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "a8zQQSxfR8W5ExEPX1oWQw" + }, + "a9xyK769TP6JjwYtXwV1Tg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5b6370e8ca2aeb2c777b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5b6370e8ca2aeb2c777b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "a9xyK769TP6JjwYtXwV1Tg" + }, + "aA6kkDqNSaiScfgWr89cjg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b15e432602988b650eab" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b15e432602988b650eab" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aA6kkDqNSaiScfgWr89cjg" + }, + "aBGFo9VcTw-QChMzqvbKpA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.08043dacec13088147e6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.08043dacec13088147e6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aBGFo9VcTw-QChMzqvbKpA" + }, + "aBHC3Ky4SyuxA8mKwnBopA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-7", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "aBHC3Ky4SyuxA8mKwnBopA" + }, + "aGIVs1NgQz-WO8O-9qodZA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2c267b7449825d2b5ce5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2c267b7449825d2b5ce5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aGIVs1NgQz-WO8O-9qodZA" + }, + "aKFU2Tg2R7ClB_35Ipm4uA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "17", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-17", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 17, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R17", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-17", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=17", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f79c82f86b714aa7d7c2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f79c82f86b714aa7d7c2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-17", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aKFU2Tg2R7ClB_35Ipm4uA" + }, + "aKY4XjCcT42j0EoFXEtclQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-crashtest-e10s", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "aKY4XjCcT42j0EoFXEtclQ" + }, + "aKzHlIxJTI6eDolSBaEaAw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a69d0ad0d333672c99f0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a69d0ad0d333672c99f0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aKzHlIxJTI6eDolSBaEaAw" + }, + "aKztSrV1R1aB1iAf9h80mg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=4" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.213bbd77343785b58fec" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.213bbd77343785b58fec" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aKztSrV1R1aB1iAf9h80mg" + }, + "aLLubNdDT8mQJiCSlMCgng": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.edcbe59a17bfc374e3fb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.edcbe59a17bfc374e3fb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aLLubNdDT8mQJiCSlMCgng" + }, + "aLXMSjp2Swiwe9ewdHF9JA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "24", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-24", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 24, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R24", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-24", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=24", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a5365e611ccfb9a8b311" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a5365e611ccfb9a8b311" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-24", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aLXMSjp2Swiwe9ewdHF9JA" + }, + "aLbjoNIRR6m0DPdUwpO-4A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "18", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-18", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 18, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "18", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-18", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=18", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c075a22d34e231a3a4c6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c075a22d34e231a3a4c6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-18", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aLbjoNIRR6m0DPdUwpO-4A" + }, + "aP7DhKKwSe6M99pDE_efMg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.980b28ef878a77e832a8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.980b28ef878a77e832a8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aP7DhKKwSe6M99pDE_efMg" + }, + "aQV2a7KvTd67tAG1pLFrjA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.be4d075ca8fa6b94959f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.be4d075ca8fa6b94959f" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aQV2a7KvTd67tAG1pLFrjA" + }, + "aQiCDx26T-6wiSeMk6SgJA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Wr6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.96c8e2f448b98a89713e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.96c8e2f448b98a89713e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-reftests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aQiCDx26T-6wiSeMk6SgJA" + }, + "aRHjiL6lQjyn3dmDZt1ONQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.092bddd339b460bb3085" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.092bddd339b460bb3085" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aRHjiL6lQjyn3dmDZt1ONQ" + }, + "aSVF6RuGQ_Ww2Wq0fsFblg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-gpu", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-gpu", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-gpu", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "aSVF6RuGQ_Ww2Wq0fsFblg" + }, + "aSfxYq9xQ7KE4ydbgPsZaA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-no-accel-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "aSfxYq9xQ7KE4ydbgPsZaA" + }, + "aT8qgNnISxaJuzZD-9ypnw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7857d0e99b8b4db40337" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7857d0e99b8b4db40337" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aT8qgNnISxaJuzZD-9ypnw" + }, + "aT9hZoBNQN6pno8NvmLt4Q": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "aT9hZoBNQN6pno8NvmLt4Q" + }, + "aUqGmbaCQrCgNaiHaIecwQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "dt8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-devtools-chrome-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "aUqGmbaCQrCgNaiHaIecwQ" + }, + "aVVwQxDfS2KVAVJCPIAeRQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "aVVwQxDfS2KVAVJCPIAeRQ" + }, + "aWGTc77ARxmDXjzRbIX6_Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=9" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-9", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "aWGTc77ARxmDXjzRbIX6_Q" + }, + "aXXHG7qhSECIIF-7vk8ppg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox" + }, + "dependencies": {}, + "kind": "build", + "label": "build-macosx64-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "FJ8BwxDbQU23Q6DzXGC2hA", + "FzokDPkGT7uIQ5tleaGBfA", + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "MNl-65MNRDOXQcncoy40LQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "cUKYM4gsS3KZuHKOYHjJqw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "osx-cross" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "MacOS X x64 Cross-compile Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-macosx64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-macosx64-nightly-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py disable_signing.py taskcluster_nightly.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@MNl-65MNRDOXQcncoy40LQ public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/hfsplus-tools.tar.xz@FJ8BwxDbQU23Q6DzXGC2hA public/build/dmg.tar.xz@FzokDPkGT7uIQ5tleaGBfA public/build/rustc.tar.xz@cUKYM4gsS3KZuHKOYHjJqw public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.macosx64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.macosx64-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.macosx64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.macosx64-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.macosx64-opt.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.macosx64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-macosx64-nightly-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-macosx64-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-macosx64" + }, + "task_id": "aXXHG7qhSECIIF-7vk8ppg" + }, + "a_jwlTcrTASX-4ma-qyiFg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=9" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ef7f0832cbdbfd0806a0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ef7f0832cbdbfd0806a0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "a_jwlTcrTASX-4ma-qyiFg" + }, + "aaVROtwoSqSjaASQKLL5pA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.00d11cf2624b61bf004f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.00d11cf2624b61bf004f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aaVROtwoSqSjaASQKLL5pA" + }, + "aacPajR_SqayvGkuC3wArg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=12" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-web-platform-tests-e10s-12", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "aacPajR_SqayvGkuC3wArg" + }, + "acBT2XDeQsu1R0q4k3ea-w": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-chrome-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "acBT2XDeQsu1R0q4k3ea-w" + }, + "adAVYNsoR1iNoritV0KvAw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "adAVYNsoR1iNoritV0KvAw" + }, + "ad_x0zxHSM2ldZLcyVpszA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R11", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bd1305bb11f903d890d2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bd1305bb11f903d890d2" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-11", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ad_x0zxHSM2ldZLcyVpszA" + }, + "afTlYiDtQzOEBCAVfl_GVg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fb11b7d76ecf8668f872" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fb11b7d76ecf8668f872" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "afTlYiDtQzOEBCAVfl_GVg" + }, + "ahUc4MrtRB-iW2Hl_0rnNg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0a40d28c54d76360319b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0a40d28c54d76360319b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ahUc4MrtRB-iW2Hl_0rnNg" + }, + "ai0xg_PsQNqSD5SoCEGkzQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ec16a0475042c8f81bf3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ec16a0475042c8f81bf3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ai0xg_PsQNqSD5SoCEGkzQ" + }, + "ail-ntasQyaKtoKpMIe0QA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "gtest", + "unittest_suite": "gtest", + "unittest_try_name": "gtest" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-gtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "gtest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "GTest", + "tier": 1 + } + }, + "metadata": { + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-gtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--gtest-suite=gtest", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6b9d554d472bc0d2a74f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6b9d554d472bc0d2a74f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-gtest", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ail-ntasQyaKtoKpMIe0QA" + }, + "aiwRBqNYQdqC6gQhssWH_Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0cd3a3da7e1719658163" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0cd3a3da7e1719658163" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aiwRBqNYQdqC6gQhssWH_Q" + }, + "ajLC7ktBRKGHOxW7ce1AGA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-media-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "ajLC7ktBRKGHOxW7ce1AGA" + }, + "amRcOZC8QXSNPtcgywlELQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.97d6e80cd7b57b5e6321" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.97d6e80cd7b57b5e6321" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-webgl-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "amRcOZC8QXSNPtcgywlELQ" + }, + "an4CLJ6eRoGNxF-CGahZOQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "an4CLJ6eRoGNxF-CGahZOQ" + }, + "anw54tTMQlag-zRjhafz2w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "13", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.45e182e8ab3e56f73737" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.45e182e8ab3e56f73737" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "anw54tTMQlag-zRjhafz2w" + }, + "aoRXbJQ7ToStsMo_4Pgc2w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2a4b35fc9be9d130627b" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2a4b35fc9be9d130627b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-7", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "aoRXbJQ7ToStsMo_4Pgc2w" + }, + "aoTD6bTsS3OwoBsnOEN8uQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b882c1f60b8ab52ded8f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b882c1f60b8ab52ded8f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aoTD6bTsS3OwoBsnOEN8uQ" + }, + "aouvxmYUSNq7znuaUVjNSw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "aouvxmYUSNq7znuaUVjNSw" + }, + "apNT_DAeS0uw8BtAzCGKow": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a5f919af89865340d081" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a5f919af89865340d081" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "apNT_DAeS0uw8BtAzCGKow" + }, + "aphLEyV3T3OzPc3DOCTuEw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.24f074972b01ea6276ba" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.24f074972b01ea6276ba" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aphLEyV3T3OzPc3DOCTuEw" + }, + "aq4Y7nNaRu-rHUwmGNwimg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2efa8717b2f409d727b2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2efa8717b2f409d727b2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "aq4Y7nNaRu-rHUwmGNwimg" + }, + "aqvwc5GpRXqL0PoLRmsZfA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-macosx64-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "osx-cross" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-macosx64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-macosx64-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "aqvwc5GpRXqL0PoLRmsZfA" + }, + "asRVpbGVRKCaP6wbYRbqZA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8ace57afb27d66a25e76" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8ace57afb27d66a25e76" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "asRVpbGVRKCaP6wbYRbqZA" + }, + "atTAGxEUTVmRv5Oy5KCssw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe9c4fb7cef4ee5dfbad" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe9c4fb7cef4ee5dfbad" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "atTAGxEUTVmRv5Oy5KCssw" + }, + "auF0_qNwSnOnCVvmZVKrYA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d8aa0900a75d595dc8c1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d8aa0900a75d595dc8c1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "auF0_qNwSnOnCVvmZVKrYA" + }, + "aw4Sk4GfRXiDuhlMv34ksw": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "kind": "build", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox" + }, + "dependencies": {}, + "kind": "build", + "label": "build-win64-nightly/opt", + "optimization": { + "skip-unless-schedules": [ + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "NjRzVK4FQ2m5nrle7AyOHA", + "boyJ8NLgT7CZbWG-dXjeuQ", + "cGC5ltMuT3udbu6w0_gGng" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-64" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Win64 Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-win64-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + ":: sccache currently uses the full compiler commandline as input to the\n:: cache hash key, so create a symlink to the task dir and build from\n:: the symlink dir to get consistent paths.\nif exist z:\\build rmdir z:\\build", + "mklink /d z:\\build %cd%", + "icacls z:\\build /grant *S-1-1-0:D /L", + "cd /d z:\\build", + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\fx_desktop_build.py --config builds\\releng_base_firefox.py --config builds\\taskcluster_base_windows.py --config builds\\taskcluster_base_win64.py --config builds\\taskcluster_sub_win64\\opt.py --config disable_signing.py --config taskcluster_nightly.py --branch maple --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --clone-tools --build --check-test --update --append-env-variables-from-configs" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@boyJ8NLgT7CZbWG-dXjeuQ public/build/rustc.tar.bz2@NjRzVK4FQ2m5nrle7AyOHA public/build/sccache2.tar.bz2@cGC5ltMuT3udbu6w0_gGng", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-opt", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win64-opt", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win64-opt.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win64-opt.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win64-opt.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-win64-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "axRTXvE2SmCnEX7ZQqafcA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-1", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "axRTXvE2SmCnEX7ZQqafcA" + }, + "b-6Ks1zPRnS5T_ixOC6g9A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bff5fe6b423faf687a94" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bff5fe6b423faf687a94" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "b-6Ks1zPRnS5T_ixOC6g9A" + }, + "b-Ru-ZncQryL6etJirDG4w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "b-Ru-ZncQryL6etJirDG4w" + }, + "b1w5rvGaQLWF64Myk4Y03Q": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "b1w5rvGaQLWF64Myk4Y03Q" + }, + "b4B1oxR7QGK8ghNP34z0WQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "42", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-42", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 42, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R42", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-42", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=42", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ec618b7b947659c0960e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ec618b7b947659c0960e" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-42", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "b4B1oxR7QGK8ghNP34z0WQ" + }, + "b4n1Hr3XRoGA2_aAiZDtHQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f176b41df4d9f5c46fe0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f176b41df4d9f5c46fe0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "b4n1Hr3XRoGA2_aAiZDtHQ" + }, + "b4negdQ3RuWK1OuRuQErgQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e8a55860fd9342477326" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e8a55860fd9342477326" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "b4negdQ3RuWK1OuRuQErgQ" + }, + "b5HGQWKZSRuJTDVnM_Pf-A": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "b5HGQWKZSRuJTDVnM_Pf-A" + }, + "b5oQdr65Qd2JD-0DYEKKmg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C7", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3bc22b41d7f9a238a4b4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3bc22b41d7f9a238a4b4" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "b5oQdr65Qd2JD-0DYEKKmg" + }, + "b79YOnbBTHWhkqpxY5_mjg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-media-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "mda3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-media-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f29fe0c3d78202179933" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f29fe0c3d78202179933" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-media-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "b79YOnbBTHWhkqpxY5_mjg" + }, + "b9UOEzHzStiWIrEiUSI3gA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.db3f2ad466f9cf77bcfa" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.db3f2ad466f9cf77bcfa" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "b9UOEzHzStiWIrEiUSI3gA" + }, + "bAtLmCJbSBmJri5EZuvucg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-browser-chrome-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "bAtLmCJbSBmJri5EZuvucg" + }, + "bBjS_1PSQnCVc3aH_SC4lg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ", + "build-signing": "CM_71PkbRiKEPpfHMeU_kA", + "repackage": "FS5E4Ea0SGm3jEBgYYXLcg" + }, + "kind": "repackage-signing", + "label": "repackage-signing-linux-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "CM_71PkbRiKEPpfHMeU_kA", + "ERGOeyR0ReW_HCzxf4t_eQ", + "FS5E4Ea0SGm3jEBgYYXLcg", + "IIQOnLdoTueU9hBgwCPS7Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "linux32" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'linux-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-linux-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "FS5E4Ea0SGm3jEBgYYXLcg", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.linux-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.linux-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.linux-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.linux-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.linux-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:release-signing", + "project:releng:signing:format:mar_sha384" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-linux-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "bBjS_1PSQnCVc3aH_SC4lg" + }, + "bCKMEGFeRT-hTelw0__i2Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn3", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bbe98ba095d9ec18284d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bbe98ba095d9ec18284d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "bCKMEGFeRT-hTelw0__i2Q" + }, + "bCWV2j2HSRSQVqCANmLuSQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-marionette-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "bCWV2j2HSRSQVqCANmLuSQ" + }, + "bCgxfk8rT7KRVoCTdeLPXg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-media-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "mda", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-media-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-media", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-media", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b8f408050960b44006c2" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b8f408050960b44006c2" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-media-e10s", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "bCgxfk8rT7KRVoCTdeLPXg" + }, + "bFNbzoUpR7WTvwuM-ehEEw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ecf7856620e9bd26296f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ecf7856620e9bd26296f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bFNbzoUpR7WTvwuM-ehEEw" + }, + "bHAqP4QNSc2rWYKysUp8-g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ec854a4b980b842bfbca" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ec854a4b980b842bfbca" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bHAqP4QNSc2rWYKysUp8-g" + }, + "bI8ldkHSSNW8yjk16994oQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "bI8ldkHSSNW8yjk16994oQ" + }, + "bKx5ART8THCOORbs4I92jw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X8", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.83228676fdecf8bde6ee" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.83228676fdecf8bde6ee" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "bKx5ART8THCOORbs4I92jw" + }, + "bLs0KrFPThyK5Kz7_DW9FA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw", + "build-signing": "CahT-c4GS-Sxbl3O4FxvQw" + }, + "kind": "test", + "label": "test-windows7-32/debug-xpcshell", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "CahT-c4GS-Sxbl3O4FxvQw", + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "X", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-xpcshell", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/CahT-c4GS-Sxbl3O4FxvQw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --xpcshell-suite=xpcshell" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-xpcshell", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "bLs0KrFPThyK5Kz7_DW9FA" + }, + "bMSL7qyjRu-5aoz260eKfQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1056f136139b114cdde0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1056f136139b114cdde0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bMSL7qyjRu-5aoz260eKfQ" + }, + "bQbnI2y0TMmQsaR6v1qUSg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3fb0d7087896ec3e0f21" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3fb0d7087896ec3e0f21" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bQbnI2y0TMmQsaR6v1qUSg" + }, + "bQjJCRflQ4SmDZbs1bQuGA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "23", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-23", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 23, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R23", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-23", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=23", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.70db3ead26be8fb675d4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.70db3ead26be8fb675d4" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-23", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "bQjJCRflQ4SmDZbs1bQuGA" + }, + "bRXdbt0rRAqrqKwof9DhPQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f9abc2d3079b8180feb6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f9abc2d3079b8180feb6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bRXdbt0rRAqrqKwof9DhPQ" + }, + "bS9w5PrOQ225BU_7Ke8ZYg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "bc1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f7f5e3684e4438b344a6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f7f5e3684e4438b344a6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-browser-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bS9w5PrOQ225BU_7Ke8ZYg" + }, + "bTOQ7e2OQqucJGEVNnEY9g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.977daa0e44932a6bb386" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.977daa0e44932a6bb386" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bTOQ7e2OQqucJGEVNnEY9g" + }, + "bUo1NlHETSu13D2P4d_Miw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2e0ebf78b49830085fd0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2e0ebf78b49830085fd0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bUo1NlHETSu13D2P4d_Miw" + }, + "bVCicuOyRN-FAlRaxHYa7w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "C3", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fdc45f92c4b77cea9fd6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fdc45f92c4b77cea9fd6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "bVCicuOyRN-FAlRaxHYa7w" + }, + "bXPtoiPOTj2M2z9QQxu4Mg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ce78194946b37c8729a7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ce78194946b37c8729a7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bXPtoiPOTj2M2z9QQxu4Mg" + }, + "bY-fx4ruRhSKnQDjsTcH9g": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "bY-fx4ruRhSKnQDjsTcH9g" + }, + "bYa3KWNAQp-cPx9tKen45A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9f16f2fb24d6f1c37ec7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9f16f2fb24d6f1c37ec7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bYa3KWNAQp-cPx9tKen45A" + }, + "bZm1N7WKQC-5tDGqCgY2Tg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-no-accel-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "bZm1N7WKQC-5tDGqCgY2Tg" + }, + "b_JEtodfTSe-UyB5uW8TZQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn1", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fec0ecc4169208c9c56d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fec0ecc4169208c9c56d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "b_JEtodfTSe-UyB5uW8TZQ" + }, + "bb7lDXjXR3iw4HOMM9mobw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a062e120a7d595d54e93" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a062e120a7d595d54e93" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bb7lDXjXR3iw4HOMM9mobw" + }, + "bbXkRrToTFiaCFUDIGrRpQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-browser-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "bbXkRrToTFiaCFUDIGrRpQ" + }, + "bd-fFYIMQWOti4hfdbGNhQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.35114d9edea376bab54a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.35114d9edea376bab54a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bd-fFYIMQWOti4hfdbGNhQ" + }, + "bgJ7vzRJSMqkGA-QKF7xyQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "bgJ7vzRJSMqkGA-QKF7xyQ" + }, + "biK6yRCnSNqZtfBk7DxafA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1ab72b116aed0a026d6a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1ab72b116aed0a026d6a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "biK6yRCnSNqZtfBk7DxafA" + }, + "bj7AlCN9SjWgNtWlq5Hqrw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7073c9ed127279c0a577" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7073c9ed127279c0a577" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "bj7AlCN9SjWgNtWlq5Hqrw" + }, + "bjXzkpcDQpWVbntc8TnQ8g": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.30f5d54d0c7882ae39c8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.30f5d54d0c7882ae39c8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bjXzkpcDQpWVbntc8TnQ8g" + }, + "bk7mmBIXS1-n4Uk3gCPBdA": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.54623b4d5daebc0bb6ab" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.54623b4d5daebc0bb6ab" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bk7mmBIXS1-n4Uk3gCPBdA" + }, + "bkhC_uWdR5Scs9OQKIhd9w": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cc303a57d1afd49cb305" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cc303a57d1afd49cb305" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bkhC_uWdR5Scs9OQKIhd9w" + }, + "bktjtIcyQomDOpJKQla_0Q": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.38dd819c5ff0ab5c627d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.38dd819c5ff0ab5c627d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-clipboard-e10s", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "bktjtIcyQomDOpJKQla_0Q" + }, + "bl3f5WBsSf2pGj4VFyTDHA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ef0c8ff66ce9ac9bbf9d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ef0c8ff66ce9ac9bbf9d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bl3f5WBsSf2pGj4VFyTDHA" + }, + "blAzb2FFS8a095ZLqUG4eQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fad3a15644e09ac2af2c" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fad3a15644e09ac2af2c" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-4", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "blAzb2FFS8a095ZLqUG4eQ" + }, + "boXYPBjWRtmbUusJqjnwtw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6707c8d1c543ee3c6da0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6707c8d1c543ee3c6da0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "boXYPBjWRtmbUusJqjnwtw" + }, + "bqmeCFqgSw-ege11c1oh3w": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "bqmeCFqgSw-ege11c1oh3w" + }, + "bqpYPuztTMOpStVst0AbfQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "kind": "repackage-signing", + "nightly": true, + "repackage_type": "repackage-signing", + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": "build", + "shipping_product": "devedition", + "signed": true + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q", + "build-signing": "MTwumuYNTf6GeL2j3-2t-Q", + "repackage": "AcBmt0e2TsiGoLooeAK_og" + }, + "kind": "repackage-signing", + "label": "repackage-signing-win32-devedition-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "AcBmt0e2TsiGoLooeAK_og", + "Er8D0-TxQ2yhtX-dCRv-4Q", + "MTwumuYNTf6GeL2j3-2t-Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Repackage signing executed by Taskcluster", + "groupSymbol": "tc-rs", + "jobKind": "build", + "machine": { + "platform": "windows2012-32-devedition" + }, + "symbol": "N", + "tier": 1 + } + }, + "metadata": { + "description": "Signing of repackaged artifacts for locale 'en-US' for build 'win32-devedition-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-signing-win32-devedition-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage-signing" + }, + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "formats": [ + "mar_sha384" + ], + "paths": [ + "public/build/target.complete.mar" + ], + "taskId": "AcBmt0e2TsiGoLooeAK_og", + "taskType": "repackage" + }, + { + "formats": [ + "sha2signcode" + ], + "paths": [ + "public/build/target.installer.exe" + ], + "taskId": "AcBmt0e2TsiGoLooeAK_og", + "taskType": "repackage" + }, + { + "formats": [ + "sha2signcodestub" + ], + "paths": [ + "public/build/target.stub-installer.exe" + ], + "taskId": "AcBmt0e2TsiGoLooeAK_og", + "taskType": "repackage" + } + ] + }, + "priority": "very-low", + "provisionerId": "scriptworker-prov-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win32-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win32-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-devedition-nightly-repackage-signing", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win32-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win32-devedition-nightly-repackage-signing.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win32-devedition-nightly-repackage-signing.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "project:releng:signing:cert:nightly-signing", + "project:releng:signing:format:mar_sha384", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:sha2signcodestub" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage-signing", + "label": "repackage-signing-win32-devedition-nightly/opt" + }, + "workerType": "signing-linux-v1" + }, + "task_id": "bqpYPuztTMOpStVst0AbfQ" + }, + "btkq5Aw4RrO7rCKUae3ucw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5e1c2b8f9523035dbac7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5e1c2b8f9523035dbac7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "btkq5Aw4RrO7rCKUae3ucw" + }, + "bxUFO9_UTkisg5kTHb7Tdw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "c2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.54914e2b828651c345b0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.54914e2b828651c345b0" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "bxUFO9_UTkisg5kTHb7Tdw" + }, + "byJuZZxJTq2SMKQ4i07lJQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.424f725e0a1be3c55627" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.424f725e0a1be3c55627" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "byJuZZxJTq2SMKQ4i07lJQ" + }, + "bzgyzdyySEGIi0ODn-Mc_A": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.891aff692d47a3f3265d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.891aff692d47a3f3265d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "bzgyzdyySEGIi0ODn-Mc_A" + }, + "c0BZu_rmRXSVlIbMYdj59g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=12" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a8602e13402a240fffe9" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a8602e13402a240fffe9" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-12", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "c0BZu_rmRXSVlIbMYdj59g" + }, + "c41nVjA4S_ui_dgokKCQJw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6338cb64987603c7e754" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6338cb64987603c7e754" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "c41nVjA4S_ui_dgokKCQJw" + }, + "c49L1hJPRze1oVEIsD2_Gg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=9" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-web-platform-tests-e10s-9", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "c49L1hJPRze1oVEIsD2_Gg" + }, + "c5d2Vh6FR02cLHymjrUG9A": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X2", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.153f1d3987cb57fc1208" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.153f1d3987cb57fc1208" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "c5d2Vh6FR02cLHymjrUG9A" + }, + "c6MqFdA3R2KAxSS0I1MtMw": { + "attributes": { + "always_target": false, + "build_platform": "android-x86", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.2-x86/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "D_9EKo6zTieV87ESRVKSYg" + }, + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "D_9EKo6zTieV87ESRVKSYg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-2-x86" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.2-x86/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/D_9EKo6zTieV87ESRVKSYg/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bea769d06dbbd1b9267d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bea769d06dbbd1b9267d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.2-x86/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "c6MqFdA3R2KAxSS0I1MtMw" + }, + "c76EwVXFRQy8ir9dxnk5Iw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.43bc6eb7238474047cd4" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.43bc6eb7238474047cd4" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "c76EwVXFRQy8ir9dxnk5Iw" + }, + "c91hGUF4TIy13eULs5gUFA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X4", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dcebd4a40f2709e5058a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dcebd4a40f2709e5058a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "c91hGUF4TIy13eULs5gUFA" + }, + "c9qqSsTDSSG2goO5bt1MaA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--enable-webrender", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cf4bc6f7e46030e09892" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cf4bc6f7e46030e09892" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "c9qqSsTDSSG2goO5bt1MaA" + }, + "cBngi6teRaK90WS0eScJdQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X9", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f8177e5137bad95cf780" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f8177e5137bad95cf780" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cBngi6teRaK90WS0eScJdQ" + }, + "cCr766VPTaWOxRJYpvbQTA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-media-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "mda2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-media-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8c62c2e84e28bfc9b226" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8c62c2e84e28bfc9b226" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-media-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cCr766VPTaWOxRJYpvbQTA" + }, + "cD1aY9NaQvW4WGN2vIb_Yw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "30", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-30", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 30, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "30", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-30", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=30", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e276703eb35ad8184ac0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e276703eb35ad8184ac0" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-30", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cD1aY9NaQvW4WGN2vIb_Yw" + }, + "cDEae2LqTsOZ_zdBlfX-9A": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5c58ddac3293f9331e6f" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5c58ddac3293f9331e6f" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-chrome-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "cDEae2LqTsOZ_zdBlfX-9A" + }, + "cEUbB57WRhmNE0JtF3_QNg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cd4075ad1264885bec3f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cd4075ad1264885bec3f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cEUbB57WRhmNE0JtF3_QNg" + }, + "cF5awcp3T0uNs-OFSFawxg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "Mn7", + "tier": 2 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e048737f94ef9fdd45ab" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e048737f94ef9fdd45ab" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cF5awcp3T0uNs-OFSFawxg" + }, + "cIU4BcCHT9mlboYYpba5hQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt10", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5829ecd813f0b9dd3bef" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5829ecd813f0b9dd3bef" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cIU4BcCHT9mlboYYpba5hQ" + }, + "cIVxRq-LTMCQlgUdKo4geg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=reftest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-reftests-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "cIVxRq-LTMCQlgUdKo4geg" + }, + "cK5S3a53Reiavoojbd1DAw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-plain-headless-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "h16", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.865f1cf70607c440386c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.865f1cf70607c440386c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cK5S3a53Reiavoojbd1DAw" + }, + "cMD3qwk4QPeafWwKmoNJow": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "a11y", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-a11y" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-a11y", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "a11y", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-a11y", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "a11y", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6ed91aaa99e02253508a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6ed91aaa99e02253508a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-a11y", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cMD3qwk4QPeafWwKmoNJow" + }, + "cMipVZaCQNy_dVrtgjPj0g": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "gl6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-webgl-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "cMipVZaCQNy_dVrtgjPj0g" + }, + "cMoxu_rWQ82lZ9DEb9L-hQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-mochitest-devtools-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "cMoxu_rWQ82lZ9DEb9L-hQ" + }, + "cNliAY_nSYiL9AP1k8U9Wg": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6185b2e44ac91f52daf7" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6185b2e44ac91f52daf7" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "cNliAY_nSYiL9AP1k8U9Wg" + }, + "cOS6aJUSQLG-2fvHalBaqA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 20 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "12", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dae7150a114a134db63c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dae7150a114a134db63c" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cOS6aJUSQLG-2fvHalBaqA" + }, + "cO_Y5Xz7TlCNmmg15W6Onw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.21e6362d045349e454e9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.21e6362d045349e454e9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cO_Y5Xz7TlCNmmg15W6Onw" + }, + "cOgYXps6Su22TZQRWGe2_w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-gpu-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "cOgYXps6Su22TZQRWGe2_w" + }, + "cPl6ey2ITBiWLCkh8XAp5g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b6e3151fe312ad17b04e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b6e3151fe312ad17b04e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cPl6ey2ITBiWLCkh8XAp5g" + }, + "cR1uHJfhS6CJBfS8X2k6xg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.bdce7dc2b7067bca8c18" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.bdce7dc2b7067bca8c18" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cR1uHJfhS6CJBfS8X2k6xg" + }, + "cReHGYRTQuee3bVc_XUnZg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1d5e6eb44625462ff621" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1d5e6eb44625462ff621" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cReHGYRTQuee3bVc_XUnZg" + }, + "cT4G-C4EQICCeNn-yDiVNA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.598c5901bb03d628de82" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.598c5901bb03d628de82" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cT4G-C4EQICCeNn-yDiVNA" + }, + "cUauu9ibR3eAA5VowCLCjQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "kind": "upload-generated-sources", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": "firefox" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win32-nightly/opt", + "optimization": { + "only-if-dependencies-run": null + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "WunQZZApQ8K3u2DCcpbYjQ", + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "Ugs", + "tier": 1 + } + }, + "metadata": { + "description": "Upload generated source files from build ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "upload-generated-sources-win32-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/upload-generated-sources" + }, + "payload": { + "cache": { + "level-3-checkouts-sparse-bc7e1a7ad01a345394f1": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/upload-generated-sources", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach python build/upload_generated_sources.py ${ARTIFACT_URL}\n" + ], + "env": { + "ARTIFACT_URL": "https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.generated-files.tar.gz", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_AUTOMATION": "1", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "WunQZZApQ8K3u2DCcpbYjQ", + "type": "task-image" + }, + "maxRunTime": 600 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/releng/gecko/build/level-3/gecko-generated-sources-upload", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "upload-generated-sources", + "label": "upload-generated-sources-win32-nightly/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cUauu9ibR3eAA5VowCLCjQ" + }, + "cVf10h1VR-usOOl7gaz8Vw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "18", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-18", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 18, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R18", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-18", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=18", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cfe36289fbb5cbf91a03" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cfe36289fbb5cbf91a03" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-18", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cVf10h1VR-usOOl7gaz8Vw" + }, + "cWFkD_1JSAqjTeQuPonN6w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "c1", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=2", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.77c099c2cc10c378e864" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.77c099c2cc10c378e864" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cWFkD_1JSAqjTeQuPonN6w" + }, + "cX_847p-RPKAVtPJPsfqHQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e01509daa39b9e970281" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e01509daa39b9e970281" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cX_847p-RPKAVtPJPsfqHQ" + }, + "cbURrH_rRbCE0S_528pxeQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "geckoview", + "unittest_suite": "geckoview", + "unittest_try_name": "geckoview" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-geckoview", + "optimization": { + "skip-unless-schedules-or-seta": [ + "geckoview", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "geckoview", + "name": "geckoview" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "gv", + "tier": 1 + } + }, + "metadata": { + "description": "Geckoview run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-geckoview", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/geckoview_example.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=geckoview", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/geckoview_example.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.51172033dd6e9d5efa68" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.51172033dd6e9d5efa68" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-geckoview", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cbURrH_rRbCE0S_528pxeQ" + }, + "ccI0vGh4Sti3JJxI65Pm6w": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-5", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "ccI0vGh4Sti3JJxI65Pm6w" + }, + "ccX69W7AQwS3MijJR7AWYA": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.19aea7b6cd3cd93f16a2" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.19aea7b6cd3cd93f16a2" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ccX69W7AQwS3MijJR7AWYA" + }, + "ceyjxmR2QAyNFW2vIZtAzQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "ceyjxmR2QAyNFW2vIZtAzQ" + }, + "cfioejVZRse4dj4tWaym0A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-media-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-media-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.92398ac990ccf517ae6d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.92398ac990ccf517ae6d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-media-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cfioejVZRse4dj4tWaym0A" + }, + "ciMnoFvtTyuxW5DmMuPp7w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "23", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-23", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 23, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R23", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-23", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=23", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.120f3450e5ce325876c9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.120f3450e5ce325876c9" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-23", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ciMnoFvtTyuxW5DmMuPp7w" + }, + "cjVC2oonRx2SlXvSt3CEBQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0d9b4a3216ffb09e2214" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0d9b4a3216ffb09e2214" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cjVC2oonRx2SlXvSt3CEBQ" + }, + "cjZV6FhUR6e88lEEsffrgQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1b164a1cee7ae76f4c16" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1b164a1cee7ae76f4c16" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cjZV6FhUR6e88lEEsffrgQ" + }, + "cm1GZaObRPSqydF_3JrC0w": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-marionette-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "Mn", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-marionette-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-marionette-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "cm1GZaObRPSqydF_3JrC0w" + }, + "coOyUHNJT5GM1BxazfXJAQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.470403eef95f8d1518ef" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.470403eef95f8d1518ef" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "coOyUHNJT5GM1BxazfXJAQ" + }, + "codlIFyrSg-0JQGbwQr4-g": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "codlIFyrSg-0JQGbwQr4-g" + }, + "cq1hBe1dSZKjMs869vUORg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "24", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-24", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 24, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R24", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-24", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=24", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7906f41d506aa86eed91" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7906f41d506aa86eed91" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-24", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "cq1hBe1dSZKjMs869vUORg" + }, + "crbA9PQsQui8YSx3nV2CiA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e94d47a90fa8330dde23" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e94d47a90fa8330dde23" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "crbA9PQsQui8YSx3nV2CiA" + }, + "csSFk3LnRWe1V_1huwShhg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cde351b7bd625c52f728" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cde351b7bd625c52f728" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "csSFk3LnRWe1V_1huwShhg" + }, + "ctgN20mOTPqonLrNpqVDyQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.84ca2866ca0abeb2db06" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.84ca2866ca0abeb2db06" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-crashtest-e10s", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ctgN20mOTPqonLrNpqVDyQ" + }, + "cumhUC7XQ3Wi2zFQAuZP1Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5d7f31b9f778b335f633" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5d7f31b9f778b335f633" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "cumhUC7XQ3Wi2zFQAuZP1Q" + }, + "cwflN3u9QvW1em72CoVsxA": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "cwflN3u9QvW1em72CoVsxA" + }, + "cy31b8MWSQu9bY5jRyooiw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-haz", + "build_type": "debug", + "kind": "hazard", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "hazard", + "label": "hazard-linux64-haz/debug", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "VNlHv0iEQDSjdje5I6ARXg", + "WRL_9HsXSfa2aNuBWX0-SQ", + "cKHlcCX7SqixxejROzMw3Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "H", + "tier": 1 + } + }, + "metadata": { + "description": "Browser Hazard Analysis Linux ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "hazard-linux64-haz/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/hazard" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-haz-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/checkouts/gecko", + "--", + "/bin/bash", + "-c", + "cd /builds/worker/checkouts/gecko/taskcluster/scripts/builder && ./build-haz-linux.sh --project browser $HOME/workspace\n" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_DIR": "/builds/worker/checkouts/gecko", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZCONFIG": "browser/config/mozconfigs/linux64/hazards", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@cKHlcCX7SqixxejROzMw3Q public/build/sixgill.tar.xz@VNlHv0iEQDSjdje5I6ARXg public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000 + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.browser-haz-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.browser-haz-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.browser-haz-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.browser-haz-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-maple-build-linux64-haz-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "hazard", + "label": "hazard-linux64-haz/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "cy31b8MWSQu9bY5jRyooiw" + }, + "czunypWbTRGQbCxn5hfkeQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5007903696853b54e397" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5007903696853b54e397" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "czunypWbTRGQbCxn5hfkeQ" + }, + "d01690TNQFilJ4uhiggAFA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--reftest-suite=crashtest", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--reftest-suite=crashtest", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fac6359dcdf53fcd9c48" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fac6359dcdf53fcd9c48" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-crashtest-e10s", + "os": "macosx", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "d01690TNQFilJ4uhiggAFA" + }, + "d1PX0elcTwuiUfLlraW69Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "mda1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-media-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1ac09eb0d269ce8999dd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1ac09eb0d269ce8999dd" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "d1PX0elcTwuiUfLlraW69Q" + }, + "d1YH1CNYTEKxQwOfi8y7pQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "12", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.011dfbd0e83f76c56e9d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.011dfbd0e83f76c56e9d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-e10s-12", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "d1YH1CNYTEKxQwOfi8y7pQ" + }, + "d3BLTy_kSbi7795cGvC2Nw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-stylo", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-stylo-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-stylo", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Rs3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run in Stylo vs. Gecko mode ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-stylo-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-stylo", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.53ff690418ad9e86f59d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.53ff690418ad9e86f59d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-stylo-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "d3BLTy_kSbi7795cGvC2Nw" + }, + "d4aNma59S22bDkeHqL1wMA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "robocop", + "unittest_suite": "robocop", + "unittest_try_name": "robocop" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "robocop", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "rc4", + "tier": 1 + } + }, + "metadata": { + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-robocop-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ada9911fafb2ca6a9a52" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ada9911fafb2ca6a9a52" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "d4aNma59S22bDkeHqL1wMA" + }, + "d8qgn2WpQ5KB8ro4yRTiiw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R13", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=13", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4d3aabdbbbb0506fc155" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4d3aabdbbbb0506fc155" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-13", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "d8qgn2WpQ5KB8ro4yRTiiw" + }, + "dAC611HQRM2zCygXQ285uw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c4425638db53870379ff" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c4425638db53870379ff" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dAC611HQRM2zCygXQ285uw" + }, + "dAgxt8YRQHGHvccoTHcdOg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "bc7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f8b9a3022211ea40bdf7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f8b9a3022211ea40bdf7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dAgxt8YRQHGHvccoTHcdOg" + }, + "dBbAVf3bQ9aRHLDOuJwvxQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2ca7943b487a8c11bb33" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2ca7943b487a8c11bb33" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dBbAVf3bQ9aRHLDOuJwvxQ" + }, + "dBgrXBKsRVCGs-yUQX8HGg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "marionette", + "unittest_suite": "marionette", + "unittest_try_name": "marionette-headless-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-marionette-headless-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "marionette", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster with e10s", + "groupSymbol": "tc-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "MnH", + "tier": 1 + } + }, + "metadata": { + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-marionette-headless-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\marionette.py --cfg mozharness\\configs\\marionette\\windows_taskcluster_config.py --headless --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --headless --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-marionette-headless-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "dBgrXBKsRVCGs-yUQX8HGg" + }, + "dDjMv3-eR3OJlNdsdlFrlg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "windows10-64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=9" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-9", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "dDjMv3-eR3OJlNdsdlFrlg" + }, + "dEj7BTs2Tjyued6NMAi4pw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-st-an", + "build_type": "debug", + "kind": "static-analysis", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "static-analysis", + "label": "static-analysis-linux64-st-an/debug", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "S", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Debug Static Analysis ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "static-analysis-linux64-st-an/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/static-analysis" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-st-an-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "DIST_TARGET_UPLOADS": "", + "DIST_UPLOADS": "", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MOZHARNESS_ACTIONS": "build", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_sub_linux_configs/64_stat_and_debug.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-st-an-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-st-an-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-st-an-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-st-an-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-st-an-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "static-analysis", + "label": "static-analysis-linux64-st-an/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "dEj7BTs2Tjyued6NMAi4pw" + }, + "dGbpC9UWQhe8ePCbwn31iQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "Wr1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe88d94b97381aa3f7f5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe88d94b97381aa3f7f5" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-reftests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dGbpC9UWQhe8ePCbwn31iQ" + }, + "dIh6gABmQ2y99IcRTS83HA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=1" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4fa6ae8cab22dd54c532" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4fa6ae8cab22dd54c532" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-e10s-1", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "dIh6gABmQ2y99IcRTS83HA" + }, + "dMDsjYp8SFyf3kp-ZkE7hw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.1d9c106dbdd3e71e4a50" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.1d9c106dbdd3e71e4a50" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dMDsjYp8SFyf3kp-ZkE7hw" + }, + "dMMTVjTASQW4jn_mKi68Kw": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-2", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "dMMTVjTASQW4jn_mKi68Kw" + }, + "dNqj2p0vSg6HncDRh5rQFA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6028c4a80e173be917c6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6028c4a80e173be917c6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dNqj2p0vSg6HncDRh5rQFA" + }, + "dNrQfuXVRUO5UhMQ8zBSWw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3aa9d422b67f7d2cdc01" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3aa9d422b67f7d2cdc01" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dNrQfuXVRUO5UhMQ8zBSWw" + }, + "dTekF9mZRqiVfQxDnz2Q4A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "9", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2aefbb372aa8a455faca" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2aefbb372aa8a455faca" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-9", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dTekF9mZRqiVfQxDnz2Q4A" + }, + "dTnuJdVnSGuSm1Nuofq96g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e9aa536b4788f3c9909b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e9aa536b4788f3c9909b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-5", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dTnuJdVnSGuSm1Nuofq96g" + }, + "dUVLkrNHRQGbmuL-o3T42w": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "14", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.50be16cedff97918eb4b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.50be16cedff97918eb4b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dUVLkrNHRQGbmuL-o3T42w" + }, + "dUiHvjcoRJ6VhqPJaVBZOQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Ru3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-no-accel-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cf43bde7f16ae4ba746d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cf43bde7f16ae4ba746d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-no-accel-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dUiHvjcoRJ6VhqPJaVBZOQ" + }, + "dVhj1atgTYGeR9iD7ru8Bg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt6", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-6", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "dVhj1atgTYGeR9iD7ru8Bg" + }, + "dWlSygUhQ_GU8vMCKxPFGw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "Rg7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-reftest-gpu-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-reftest-gpu-e10s-7", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "dWlSygUhQ_GU8vMCKxPFGw" + }, + "dX1dwhzlQIi3s1uUB4Hvrw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "dX1dwhzlQIi3s1uUB4Hvrw" + }, + "dYkHDF06TuGVVqV7qivzzw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "dYkHDF06TuGVVqV7qivzzw" + }, + "dYleR9KyQI-_zwSRSj6oqw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "dYleR9KyQI-_zwSRSj6oqw" + }, + "daI0naOfQKmhT5Zhsvvr6w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "X7", + "tier": 2 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5c0e0aa94282d863029d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5c0e0aa94282d863029d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-xpcshell-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "daI0naOfQKmhT5Zhsvvr6w" + }, + "damJovWqTEeedMvgW3ZcJw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8d3e61a653f430101254" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8d3e61a653f430101254" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "damJovWqTEeedMvgW3ZcJw" + }, + "dbPz-QcTQsuSUgLaLdqXAw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ad2a7912754249aafbca" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ad2a7912754249aafbca" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dbPz-QcTQsuSUgLaLdqXAw" + }, + "dcdPvW1ARzup1y3kGNotMQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "dcdPvW1ARzup1y3kGNotMQ" + }, + "de2kqUYoQHyDw0TTxgR82Q": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=12", + "--this-chunk=11" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e65c61b03e1f9cc2a7b1" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e65c61b03e1f9cc2a7b1" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-e10s-11", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "de2kqUYoQHyDw0TTxgR82Q" + }, + "dfz4qTW2RyeDCiAf0BAedA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.49f55e4435ed3c680d8d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.49f55e4435ed3c680d8d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dfz4qTW2RyeDCiAf0BAedA" + }, + "dgrJGCPDTiS1gzGLwHRu2w": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f94a2bf54cb3356a30d6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f94a2bf54cb3356a30d6" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dgrJGCPDTiS1gzGLwHRu2w" + }, + "dgsJEPQMR6mrv9FvCFufBA": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest-gpu", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-gpu-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "Rg3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-gpu-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-gpu --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-gpu-e10s-3", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "dgsJEPQMR6mrv9FvCFufBA" + }, + "dhpEOmDZRyiZO-YxM6WL3A": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "dhpEOmDZRyiZO-YxM6WL3A" + }, + "djlw6psJTyKDYFmgPPHARA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2f98f2d23fc06a2ce47e" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2f98f2d23fc06a2ce47e" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-webgl-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "djlw6psJTyKDYFmgPPHARA" + }, + "dn3t1LRGRmOx3n8YcpZPpg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "dn3t1LRGRmOx3n8YcpZPpg" + }, + "dpjItdcGQF-nmhR_yrzSLg": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=48", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.32bd107cdad1695d17fb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.32bd107cdad1695d17fb" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-reftest-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dpjItdcGQF-nmhR_yrzSLg" + }, + "dqAuvZSdT16TTaBvSU2okw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe1a9558b8cfa1864cd3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe1a9558b8cfa1864cd3" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dqAuvZSdT16TTaBvSU2okw" + }, + "dqpzI0k3Ty25OtumONEg-Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "X6", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.acae1495684a42821f79" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.acae1495684a42821f79" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-6", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dqpzI0k3Ty25OtumONEg-Q" + }, + "drRG6EnCS8O9a6WyUp65Sw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-e10s-7", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "drRG6EnCS8O9a6WyUp65Sw" + }, + "ds0hDF1pQ5OmWtNQNngyGA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.88e6064b53370a7757dd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.88e6064b53370a7757dd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ds0hDF1pQ5OmWtNQNngyGA" + }, + "dtbb8QdcSfO4msZGyAoNXQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-3", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "dtbb8QdcSfO4msZGyAoNXQ" + }, + "dvxX305qQTOkFp5QtePgrw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9bf8e8da0a87acddd75d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9bf8e8da0a87acddd75d" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "dvxX305qQTOkFp5QtePgrw" + }, + "dyYJd-6LTt6kzlKgtH5LkQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4915f552ba8d2402de82" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4915f552ba8d2402de82" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "dyYJd-6LTt6kzlKgtH5LkQ" + }, + "dzoSobeOS-CnIM4Ol_ruKQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --total-chunk=5 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "dzoSobeOS-CnIM4Ol_ruKQ" + }, + "e-xV3gCWRk6m6ANueun_tA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux64/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-xpcshell-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X10", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-xpcshell-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.85835b455fa64ca9b84a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.85835b455fa64ca9b84a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-xpcshell-10", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "e-xV3gCWRk6m6ANueun_tA" + }, + "e0Wcv1J8Snu6uX8o4thZpQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "e0Wcv1J8Snu6uX8o4thZpQ" + }, + "e0kDqClfSGCf3UrRp_vMoQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Wr3", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2f2ad9c88b2f6794f1d3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2f2ad9c88b2f6794f1d3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-web-platform-tests-reftests-e10s-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "e0kDqClfSGCf3UrRp_vMoQ" + }, + "e1a1G7ctRJOSDgehoS06BA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "e1a1G7ctRJOSDgehoS06BA" + }, + "e5n3JuUHQIuHGvkxoQ5vDQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.55d9aa14a78fb3c4558e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.55d9aa14a78fb3c4558e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-devtools-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "e5n3JuUHQIuHGvkxoQ5vDQ" + }, + "e7-qksexQ0qb76VR7R3y4Q": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "C1", + "tier": 2 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.36afdae63f1da2bc3344" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.36afdae63f1da2bc3344" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-crashtest-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "e7-qksexQ0qb76VR7R3y4Q" + }, + "e8T4ziwiQS267lW3i5t9jA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R13", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=13", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d801f1b8a9ddac06b47b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d801f1b8a9ddac06b47b" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-13", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "e8T4ziwiQS267lW3i5t9jA" + }, + "eBqrGNyFTmO3Bb87ArEB4w": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "wpt8", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-web-platform-tests-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-web-platform-tests-e10s-8", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "eBqrGNyFTmO3Bb87ArEB4w" + }, + "eC-vA6cRRxyvqDOIzZhQiA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "Ru5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-reftest-no-accel-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.317358a9d53a8a3846b0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.317358a9d53a8a3846b0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-reftest-no-accel-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eC-vA6cRRxyvqDOIzZhQiA" + }, + "eDkM93ZNR5WuqRWloKSPgg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "gl8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-8", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "eDkM93ZNR5WuqRWloKSPgg" + }, + "eDsXIlhiQh6muWuOoPVPgg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "X5", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-xpcshell-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.26e4bb595803243fce73" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.26e4bb595803243fce73" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-xpcshell-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eDsXIlhiQh6muWuOoPVPgg" + }, + "eEcF4X5ETn6c-mfN4sCKFQ": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "eEcF4X5ETn6c-mfN4sCKFQ" + }, + "eFrtiznRRbaUIQjSHnlUCA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "eFrtiznRRbaUIQjSHnlUCA" + }, + "eGMXvy00T06Nu8g8wsuFpg": { + "attributes": { + "always_target": false, + "build_platform": "win64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aw4Sk4GfRXiDuhlMv34ksw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-nightly" + }, + "symbol": "gl4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/aw4Sk4GfRXiDuhlMv34ksw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aw4Sk4GfRXiDuhlMv34ksw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-nightly/opt-mochitest-webgl-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64-gpu" + }, + "task_id": "eGMXvy00T06Nu8g8wsuFpg" + }, + "eGpPiHFMQb28IFsQKylQUw": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "eGpPiHFMQb28IFsQKylQUw" + }, + "eHKwv22qSWeZBRMrM8dqHQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-base-toolchains", + "build_type": "debug", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-base-toolchains/debug", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "I7Ps06L_RXiYnvXmdyzgyw", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "cKHlcCX7SqixxejROzMw3Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Bb", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 base toolchains Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-base-toolchains/debug", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-base-toolchains-debug-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "debug", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/gcc.tar.xz@cKHlcCX7SqixxejROzMw3Q public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "base-toolchains", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-base-toolchains-debug", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-base-toolchains-debug-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-base-toolchains/debug", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "eHKwv22qSWeZBRMrM8dqHQ" + }, + "eJi4Ep3-SFSBTwYbGeeY8w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-webgl-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "gl3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-webgl-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4903c03d4ab6cefd55ec" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4903c03d4ab6cefd55ec" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-webgl-e10s-3", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "eJi4Ep3-SFSBTwYbGeeY8w" + }, + "eKQR5yMzSxO1Ur2HXdShWg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "16", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-16", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "16", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-16", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2d43ab255a9f2a36d1a6" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2d43ab255a9f2a36d1a6" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-16", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eKQR5yMzSxO1Ur2HXdShWg" + }, + "eLQmgiWuTtCY-P9KooP0-w": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.0b78a189d92ce01a1aae" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.0b78a189d92ce01a1aae" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-7", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eLQmgiWuTtCY-P9KooP0-w" + }, + "eLzAGxomR1KyQbQncfhU6w": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9002f301b834f67033ab" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9002f301b834f67033ab" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-gpu-e10s", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "eLzAGxomR1KyQbQncfhU6w" + }, + "eNIADbBxRtGQeYVvhaf9Vw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "X3", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-xpcshell-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.eb5e514d3ce085cfdbde" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.eb5e514d3ce085cfdbde" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-xpcshell-3", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eNIADbBxRtGQeYVvhaf9Vw" + }, + "eOAC4jC7Rfi15gOm-uaZDA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "Ru1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-no-accel-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.517a61b07b2000833f7e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.517a61b07b2000833f7e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-no-accel-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eOAC4jC7Rfi15gOm-uaZDA" + }, + "eRFhCI4ITvK6jY8BEMcnkA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-reftest-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "R2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-reftest-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--reftest-suite=reftest", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--reftest-suite=reftest", + "--e10s", + "--total-chunk=2", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.72a4ec617ade03657e69" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.72a4ec617ade03657e69" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-reftest-e10s-2", + "os": "macosx", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "eRFhCI4ITvK6jY8BEMcnkA" + }, + "eRg4hw2kToWGVtWc3xSTGQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "X8", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-xpcshell-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.755ab8f52c9bb3930a0a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.755ab8f52c9bb3930a0a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-8", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eRg4hw2kToWGVtWc3xSTGQ" + }, + "eU3ZXfwbSD-EvdGphDxB9g": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.89c2874505cb2ca9518c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.89c2874505cb2ca9518c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-devtools-chrome-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eU3ZXfwbSD-EvdGphDxB9g" + }, + "eVizrwJDSUuww4HiFk99HQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-reftests", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-reftests", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=reftest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=reftest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-reftests", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "eVizrwJDSUuww4HiFk99HQ" + }, + "eWAxpr7gRp2PwIeZVWl4dQ": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "17", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-17", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 17, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "17", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-17", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=17", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.779035329c69ef8a1330" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.779035329c69ef8a1330" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-17", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "eWAxpr7gRp2PwIeZVWl4dQ" + }, + "eXzdXprNSIWXFa7q1vDr2g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f900fb52847e5d5e27da" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f900fb52847e5d5e27da" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eXzdXprNSIWXFa7q1vDr2g" + }, + "eYD_jyZPSq-d_oG6hlTzoA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc8", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.06936358dd9d51c69ee9" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.06936358dd9d51c69ee9" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-8", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eYD_jyZPSq-d_oG6hlTzoA" + }, + "eZYWTWuOQ0KTksYizkc9Yg": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b46c1a03e41661f0b557" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b46c1a03e41661f0b557" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-devtools-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eZYWTWuOQ0KTksYizkc9Yg" + }, + "eb7-cx3NSjepASciTziOew": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.659fce8b34ce05fca9f0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.659fce8b34ce05fca9f0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "eb7-cx3NSjepASciTziOew" + }, + "ebO7QslKQfuzLE68kq-i4g": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows10-64/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "ebO7QslKQfuzLE68kq-i4g" + }, + "ebU5lC1dTRiOwhXcV_oY4g": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "kind": "repackage", + "nightly": true, + "repackage_type": "repackage", + "run_on_projects": [ + "all" + ], + "shipping_phase": "build", + "shipping_product": "firefox", + "signed": true + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ", + "build-signing": "Cuw8Gni7Shy76nRCvgSWIA" + }, + "kind": "repackage", + "label": "repackage-win32-nightly/opt", + "optimization": null, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Cuw8Gni7Shy76nRCvgSWIA", + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "windows2012-32" + }, + "symbol": "Nr", + "tier": 1 + } + }, + "metadata": { + "description": "Repackaging for locale 'en-US' for build 'win32-nightly/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "repackage-win32-nightly/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/repackage" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.installer.exe", + "path": "public/build/target.installer.exe", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.complete.mar", + "path": "public/build/target.complete.mar", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build/target.stub-installer.exe", + "path": "public/build/target.stub-installer.exe", + "type": "file" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/build", + "path": "public/build", + "type": "directory" + } + ], + "command": [ + "\"c:\\Program Files\\Mercurial\\hg.exe\" robustcheckout --sharebase y:\\hg-shared --purge --upstream https://hg.mozilla.org/mozilla-unified --revision 054fe08d229f064a71bae9bb793e7ab8d95eff61 https://hg.mozilla.org/projects/maple .\\build\\src", + ":: TinderboxPrint:054fe08d229f064a71bae9bb793e7ab8d95eff61\n", + "c:\\mozilla-build\\python\\python.exe .\\build\\src\\testing\\mozharness\\scripts\\repackage.py --config repackage\\win32_signed.py --work-dir %cd:Z:=z:%\\build --download_input --setup --repackage" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REF": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "SIGNED_SETUP": "https://queue.taskcluster.net/v1/task/Cuw8Gni7Shy76nRCvgSWIA/artifacts/public/build/setup.exe", + "SIGNED_SETUP_STUB": "https://queue.taskcluster.net/v1/task/Cuw8Gni7Shy76nRCvgSWIA/artifacts/public/build/setup-stub.exe", + "SIGNED_ZIP": "https://queue.taskcluster.net/v1/task/Cuw8Gni7Shy76nRCvgSWIA/artifacts/public/build/target.zip", + "UNSIGNED_MAR": "https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/host/bin/mar.exe" + }, + "features": { + "chainOfTrust": true + }, + "maxRunTime": 7200, + "mounts": [], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.nightly.latest.firefox.win32-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-nightly-repackage", + "index.gecko.v2.maple.nightly.2018.01.09.latest.firefox.win32-nightly-repackage", + "index.gecko.v2.maple.nightly.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.win32-nightly-repackage", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox-l10n.win32-nightly-repackage.en-US", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox-l10n.win32-nightly-repackage.en-US", + "index.gecko.v2.maple.latest.firefox-l10n.win32-nightly-repackage.en-US", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "repackage", + "label": "repackage-win32-nightly/opt", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-3-b-win2012" + }, + "task_id": "ebU5lC1dTRiOwhXcV_oY4g" + }, + "ed2jA7doR_msTWJNdfPtZg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "13", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-13", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "13", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-13", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.05bae601c933273fe975" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.05bae601c933273fe975" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-13", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "ed2jA7doR_msTWJNdfPtZg" + }, + "egB9R3f7QrmVKJG7ulAPlA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster", + "groupSymbol": "tc-W", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --total-chunk=12 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-4", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "egB9R3f7QrmVKJG7ulAPlA" + }, + "emdsoa1NQKeN5Wf7OwyB_w": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "linux32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "bc14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4dfef959515b698d6200" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4dfef959515b698d6200" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "emdsoa1NQKeN5Wf7OwyB_w" + }, + "er7h6DszQEGXntu0eGOMew": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "9", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-9", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt9", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-9", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.219ebf195c761c666e1d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.219ebf195c761c666e1d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-9", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "er7h6DszQEGXntu0eGOMew" + }, + "ervHAierR2a-1ySE5gzndQ": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.79de2402eaedaded334a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.79de2402eaedaded334a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "ervHAierR2a-1ySE5gzndQ" + }, + "euzcve63QTS_aJxqZellaA": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-clipboard-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "euzcve63QTS_aJxqZellaA" + }, + "evmOySMjR_Cr37bsW375Xg": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.638b695ae5b31e806aa3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.638b695ae5b31e806aa3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-web-platform-tests-e10s-7", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "evmOySMjR_Cr37bsW375Xg" + }, + "ew4misArQ4mO6Qij3o2gDg": { + "attributes": { + "always_target": false, + "build_platform": "win32-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "windows7-32-devedition/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Er8D0-TxQ2yhtX-dCRv-4Q" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-devedition" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-devedition/opt-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Er8D0-TxQ2yhtX-dCRv-4Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=8" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "Er8D0-TxQ2yhtX-dCRv-4Q" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-devedition/opt-reftest-e10s-8", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "ew4misArQ4mO6Qij3o2gDg" + }, + "ewbednRyRJqIq-lcixEUjQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-crashtest", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-crashtest", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=crashtest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-crashtest", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "ewbednRyRJqIq-lcixEUjQ" + }, + "expVV9HERZWM-obA42N7IQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--disable-stylo", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a41c3455d5a396d68259" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a41c3455d5a396d68259" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-webgl-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "expVV9HERZWM-obA42N7IQ" + }, + "f-qOaBLMSIGXA2g1FlD42A": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "bc4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-browser-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "f-qOaBLMSIGXA2g1FlD42A" + }, + "f0zyojJXRF6ytZwTB5nPxQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--cfg", + "mozharness/configs/remove_executables.py", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.95c8d94aabdb39f5af5e" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.95c8d94aabdb39f5af5e" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-clipboard-e10s", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "f0zyojJXRF6ytZwTB5nPxQ" + }, + "f12hFyXOTLeNXBSxDq88dQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "wpt1", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-web-platform-tests-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.325818bd8e978d88df8b" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.325818bd8e978d88df8b" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-1", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "f12hFyXOTLeNXBSxDq88dQ" + }, + "f1oqscuyTbCynnTJR0VXeA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "4", + "tier": 2 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.e2093b96eab7f376f56a" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.e2093b96eab7f376f56a" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-mochitest-e10s-4", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "f1oqscuyTbCynnTJR0VXeA" + }, + "f2QdD4kvQZaaSjZKJzDcfw": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.65a7ef18de5e973eadd8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.65a7ef18de5e973eadd8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "f2QdD4kvQZaaSjZKJzDcfw" + }, + "f2swt3euSuu-_jMh30wLnQ": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=reftest", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=reftest", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fe2b9b3d47e7f8b552d1" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fe2b9b3d47e7f8b552d1" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-web-platform-tests-reftests-e10s", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "f2swt3euSuu-_jMh30wLnQ" + }, + "f3-rh1qiTdqYKFVYrkss8g": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "14", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-14", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 14, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "14", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-14", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.babd922371ed073186c1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.babd922371ed073186c1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-14", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "f3-rh1qiTdqYKFVYrkss8g" + }, + "f4UGw4nJS9OVaZA-NxELow": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=15", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.67c4f9fb36fec862f3ac" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.67c4f9fb36fec862f3ac" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "f4UGw4nJS9OVaZA-NxELow" + }, + "f8F4DRX_T0evAjWiN1Ytvg": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "f8F4DRX_T0evAjWiN1Ytvg" + }, + "f9hImdC6RK2fhMFog_eWbg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "dt6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.374e17bdcbc955f53a52" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.374e17bdcbc955f53a52" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-mochitest-devtools-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "f9hImdC6RK2fhMFog_eWbg" + }, + "fAI1kzZRQOOq8PytZ4cN3g": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "Ru6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest-no-accel --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-6", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "fAI1kzZRQOOq8PytZ4cN3g" + }, + "fARTiIaxQy-DhW74BLsJuw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "15", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-15", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 15, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "15", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-15", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f982c479bbb5631d8fca" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f982c479bbb5631d8fca" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-15", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fARTiIaxQy-DhW74BLsJuw" + }, + "fAteU94kSsuSejttyBy3rA": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "clipboard", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-clipboard-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-clipboard-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "cl", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-clipboard-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-clipboard-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "fAteU94kSsuSejttyBy3rA" + }, + "fBQnFFwJTkqNY4A5VAAddQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "Ru2", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-no-accel-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ba7e668539117283fcb8" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ba7e668539117283fcb8" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-no-accel-e10s-2", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fBQnFFwJTkqNY4A5VAAddQ" + }, + "fBTMfGGWQsS_50X1FCzIKw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.dc10023613b3ea330f6d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.dc10023613b3ea330f6d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fBTMfGGWQsS_50X1FCzIKw" + }, + "fBhGL-StRhCaVvnQtwfACg": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "wpt2", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-web-platform-tests-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b67ce79485dade8daa76" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b67ce79485dade8daa76" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fBhGL-StRhCaVvnQtwfACg" + }, + "fEWzCObcRCW0AGHUIgoCyA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan-fuzzing", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-linux64-asan-fuzzing/opt", + "optimization": { + "skip-unless-schedules": [ + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "Drteyl6bQ5eXbG9YIua45w", + "IIQOnLdoTueU9hBgwCPS7Q", + "WRL_9HsXSfa2aNuBWX0-SQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "XiOBujFvQkSTIQvVWjhJzA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "IIQOnLdoTueU9hBgwCPS7Q" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "linux64" + }, + "symbol": "Bof", + "tier": 1 + } + }, + "metadata": { + "description": "Linux64 Fuzzing Opt ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-linux64-asan-fuzzing/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-linux64-asan-fuzzing-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "fuzzing-asan-tc", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py balrog/production.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@Drteyl6bQ5eXbG9YIua45w public/build/gcc.tar.xz@XiOBujFvQkSTIQvVWjhJzA public/build/rustc.tar.xz@WRL_9HsXSfa2aNuBWX0-SQ public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "asan-fuzzing", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "IIQOnLdoTueU9hBgwCPS7Q", + "type": "task-image" + }, + "maxRunTime": 36000, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.firefox.linux64-fuzzing-asan-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.firefox.linux64-fuzzing-asan-opt", + "index.gecko.v2.maple.pushlog-id.343.firefox.linux64-fuzzing-asan-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.firefox.linux64-fuzzing-asan-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-linux64-asan-fuzzing-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-linux64-asan-fuzzing/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-linux" + }, + "task_id": "fEWzCObcRCW0AGHUIgoCyA" + }, + "fGQ1TcMWQses4r29mBopcw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "8", + "test_platform": "linux32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-8", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "R8", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-reftest-e10s-8", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b2838c4c9bfc746eee79" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b2838c4c9bfc746eee79" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-reftest-e10s-8", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fGQ1TcMWQses4r29mBopcw" + }, + "fHVQ_gq9RRuRIJzopgqwSg": { + "attributes": { + "always_target": false, + "build_platform": "android-aarch64", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-android-aarch64/opt", + "optimization": { + "skip-unless-schedules": [ + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "BW8vSUH1SbOPEd52XtjWNQ", + "F3r_JetlQ7azJsxzWUj71Q", + "I7Ps06L_RXiYnvXmdyzgyw", + "JDK3DN9yRmGSrRjNSqyMCw", + "UiMK4BDOTRyD-ct_25PQJQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "ZvnwVi2KRxm9HH0FVlAXag" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "UiMK4BDOTRyD-ct_25PQJQ" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "android-5-0-aarch64" + }, + "symbol": "B", + "tier": 1 + } + }, + "metadata": { + "description": "Android 5.0 AArch64 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-android-aarch64/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/android/R": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "type": "directory" + }, + "public/android/maven": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "type": "directory" + }, + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-android-aarch64-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "aarch64", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py platform_supports_post_upload_to_latest.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@F3r_JetlQ7azJsxzWUj71Q project/gecko/android-sdk/android-sdk-linux.tar.xz@JDK3DN9yRmGSrRjNSqyMCw public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/rustc.tar.xz@ZvnwVi2KRxm9HH0FVlAXag public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ public/build/proguard-jar.tar.xz@BW8vSUH1SbOPEd52XtjWNQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "UiMK4BDOTRyD-ct_25PQJQ", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.mobile.android-aarch64-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.mobile.android-aarch64-opt", + "index.gecko.v2.maple.pushlog-id.343.mobile.android-aarch64-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.mobile.android-aarch64-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "queue:get-artifact:project/gecko/android-sdk/*", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-android-aarch64-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-android-aarch64/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-android" + }, + "task_id": "fHVQ_gq9RRuRIJzopgqwSg" + }, + "fHw9TpjgTkqE_f-zB92rlg": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "12", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-12", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "wpt12", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-web-platform-tests-e10s-12", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.567ee66fa102cb30b1fb" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.567ee66fa102cb30b1fb" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-web-platform-tests-e10s-12", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fHw9TpjgTkqE_f-zB92rlg" + }, + "fKNyaYoOTNGUZatszV8hoA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "45", + "test_platform": "android-4.3-arm7-api-16/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "HlpOVUgbRA2uEqbi0M2Q4w" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-45", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HlpOVUgbRA2uEqbi0M2Q4w", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 45, + "total": 48 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "45", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-45", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=45", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HlpOVUgbRA2uEqbi0M2Q4w/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.25f61195cbf5272a5f46" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.25f61195cbf5272a5f46" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-45", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fKNyaYoOTNGUZatszV8hoA" + }, + "fKRh8UcKQo-WSG-i5TB1vA": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "22", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-22", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 22, + "total": 24 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "R22", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-22", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=22", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8acdc08a77cb59ce47f5" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8acdc08a77cb59ce47f5" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-reftest-22", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fKRh8UcKQo-WSG-i5TB1vA" + }, + "fKjh_uJ7QiKHRouYv5KqZQ": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows10-64/debug", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-reftest-no-accel-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "buildername": "Windows 10 64-bit maple debug test reftest-no-accel-2", + "properties": { + "installer_path": "public/build/target.zip", + "product": "firefox", + "who": "asasaki@mozilla.com" + }, + "sourcestamp": { + "branch": "maple", + "repository": "https://hg.mozilla.org/projects/maple", + "revision": "054fe08d229f064a71bae9bb793e7ab8d95eff61" + } + }, + "priority": "very-low", + "provisionerId": "buildbot-bridge", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5b5e17ed87cab0d2185b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-reftest-no-accel-2", + "test-type": "reftest", + "worker-implementation": "buildbot-bridge" + }, + "workerType": "buildbot-bridge" + }, + "task_id": "fKjh_uJ7QiKHRouYv5KqZQ" + }, + "fKwQSpHQRM6N2A8uS2z67g": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "dt4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "fKwQSpHQRM6N2A8uS2z67g" + }, + "fL_FovG8Ru-BLOvGpXk_fQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.7979770a59d3e890adb3" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.7979770a59d3e890adb3" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fL_FovG8Ru-BLOvGpXk_fQ" + }, + "fMU3B3OdRs6rTWjro68EfA": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.93b7965708533ba61b04" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.93b7965708533ba61b04" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-devtools-chrome-e10s-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fMU3B3OdRs6rTWjro68EfA" + }, + "fMwVfR56T9mWT4zSQr2Eqw": { + "attributes": { + "always_target": false, + "build_platform": "linux64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "LnQHtSIyQq-3fF5zNPWrQw" + }, + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-webgl-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "LnQHtSIyQq-3fF5zNPWrQw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-nightly" + }, + "symbol": "gl1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-nightly/opt-mochitest-webgl-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/LnQHtSIyQq-3fF5zNPWrQw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.c16930ccd3ad8ce5700f" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.c16930ccd3ad8ce5700f" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-nightly/opt-mochitest-webgl-e10s-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fMwVfR56T9mWT4zSQr2Eqw" + }, + "fNXNPgYFQjmYti7jaKWwyw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-qr/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-qr" + }, + "symbol": "R1", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-qr/debug-reftest-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.986a62716761ba66ff54" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.986a62716761ba66ff54" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-qr/debug-reftest-e10s-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fNXNPgYFQjmYti7jaKWwyw" + }, + "fOFOjH8ORMCBn9dImQwrKQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru7", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ad5baa3bbf91272ee1dd" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ad5baa3bbf91272ee1dd" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-7", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fOFOjH8ORMCBn9dImQwrKQ" + }, + "fP4R71h3TbWLS9qGSKCOVA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-reftest-e10s-5", + "os": "windows", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "fP4R71h3TbWLS9qGSKCOVA" + }, + "fP6Z2D2GRa6hzfK1QP7QOA": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=4" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-4", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "fP6Z2D2GRa6hzfK1QP7QOA" + }, + "fR3HhSu6Q1m7RXYTQOyQpw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "cppunittest", + "unittest_suite": "cppunittest", + "unittest_try_name": "cppunit" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-cppunit", + "optimization": { + "skip-unless-schedules-or-seta": [ + "cppunittest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "Cpp", + "tier": 1 + } + }, + "metadata": { + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-cppunit", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --cppunittest-suite=cppunittest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-cppunit", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "fR3HhSu6Q1m7RXYTQOyQpw" + }, + "fRV17LPJQyuYOdWxHQCx3g": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "macosx64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "4", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-chunked", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.ca867f17c2cb5ad4994b" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.ca867f17c2cb5ad4994b" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-e10s-4", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "fRV17LPJQyuYOdWxHQCx3g" + }, + "fS1OgoMhQ3i2b0KsQfuthQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl7", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=7" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-7", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "fS1OgoMhQ3i2b0KsQfuthQ" + }, + "fTijr9l_TaeMMl9mPWd2ZQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "windows7-32/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "wpt11", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=testharness --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=11" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-11", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "fTijr9l_TaeMMl9mPWd2ZQ" + }, + "fUgS_tmkQ2WGWre-AAYweQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "R6", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-reftest-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.8d20b4a93f7acd47e1b1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.8d20b4a93f7acd47e1b1" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-reftest-e10s-6", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fUgS_tmkQ2WGWre-AAYweQ" + }, + "fV1gw7q8SsKJAWWkyGafgg": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-chrome-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "fV1gw7q8SsKJAWWkyGafgg" + }, + "fWZER79mT5yDjN4ksSBv7A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.a530c921520587d4e9d0" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.a530c921520587d4e9d0" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fWZER79mT5yDjN4ksSBv7A" + }, + "fWjmW0WQRTaFjirvgPww3Q": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "reftest-no-accel", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-no-accel-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "Ru4", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-reftest-no-accel-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.be2f87614d5416292b29" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.be2f87614d5416292b29" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-reftest-no-accel-e10s-4", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fWjmW0WQRTaFjirvgPww3Q" + }, + "faOLUkM_SKawDYnkconsrQ": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "windows7-32/debug", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-webgl-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --total-chunk=8 --this-chunk=2" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-webgl-2", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "faOLUkM_SKawDYnkconsrQ" + }, + "fbZsiJFyTymd59PhLC8SYA": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "4", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-4", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "Wr4", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-4", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.fb0dba8c88acf0c45e93" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.fb0dba8c88acf0c45e93" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-reftests-e10s-4", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fbZsiJFyTymd59PhLC8SYA" + }, + "fcBvBBmKQ7CxowPzlpgpaA": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "gpu", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-gpu-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-mochitest-gpu-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "gpu", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-mochitest-gpu-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d2c12738769d983ee3f3" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d2c12738769d983ee3f3" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-mochitest-gpu-e10s", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "fcBvBBmKQ7CxowPzlpgpaA" + }, + "fcSinrUURgywgOlWBXmqpQ": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=3" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-3", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "fcSinrUURgywgOlWBXmqpQ" + }, + "femN6_78RhO7YcU_m7BeTw": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-stylo-disabled" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.4db2ba5433776922025c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.4db2ba5433776922025c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-stylo-disabled/debug-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "femN6_78RhO7YcU_m7BeTw" + }, + "ffsHQFQFTIKDoT0leyb95g": { + "attributes": { + "always_target": false, + "build_platform": "win32", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "SYzNDD8xRR2qGeZ-fiQwnw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32" + }, + "symbol": "bc5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=browser-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/SYzNDD8xRR2qGeZ-fiQwnw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "SYzNDD8xRR2qGeZ-fiQwnw" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "ffsHQFQFTIKDoT0leyb95g" + }, + "fhUWs0TiSBKG9bM_XZlnQw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "macosx64-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "aXXHG7qhSECIIF-7vk8ppg" + }, + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-webgl-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "aXXHG7qhSECIIF-7vk8ppg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "macosx64-nightly" + }, + "symbol": "gl2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64-nightly/opt-mochitest-webgl-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/aXXHG7qhSECIIF-7vk8ppg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "aXXHG7qhSECIIF-7vk8ppg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.6b55aa499e793ac67fd0" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.6b55aa499e793ac67fd0" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64-nightly/opt-mochitest-webgl-e10s-2", + "os": "macosx", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "fhUWs0TiSBKG9bM_XZlnQw" + }, + "fhyP9oVxQzm5JS1yPXW9Og": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "macosx64/debug", + "unittest_flavor": "crashtest", + "unittest_suite": "reftest", + "unittest_try_name": "crashtest-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-crashtest-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "C", + "tier": 1 + } + }, + "metadata": { + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-crashtest-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--reftest-suite=crashtest", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--reftest-suite=crashtest", + "--e10s" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 3600, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f457c91bba57136d5138" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f457c91bba57136d5138" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-crashtest-e10s", + "os": "macosx", + "test-type": "reftest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "fhyP9oVxQzm5JS1yPXW9Og" + }, + "fj96Z39jTq6jZPDqlrGoNg": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "dt1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=1" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-mochitest-devtools-chrome-e10s-1", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "fj96Z39jTq6jZPDqlrGoNg" + }, + "fjOtTnDaQ0-1FKqhuDjytw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux32/debug", + "unittest_flavor": "xpcshell", + "unittest_suite": "xpcshell", + "unittest_try_name": "xpcshell" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-xpcshell-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "xpcshell", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Xpcshell tests executed by TaskCluster", + "groupSymbol": "tc-X", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "X2", + "tier": 1 + } + }, + "metadata": { + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-xpcshell-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.cba9aa532c4888bfbda7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.cba9aa532c4888bfbda7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-xpcshell-2", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fjOtTnDaQ0-1FKqhuDjytw" + }, + "fkM8im2dRg6j9X-D-CWFvg": { + "attributes": { + "always_target": false, + "build_platform": "win64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64/debug", + "unittest_flavor": "mochitest-media", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-media-e10s" + }, + "dependencies": { + "build": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "kind": "test", + "label": "test-windows10-64/debug-mochitest-media-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "QyB-tN8tRqWvGDTTYWBSOA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64" + }, + "symbol": "mda", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64/debug-mochitest-media-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-media --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/QyB-tN8tRqWvGDTTYWBSOA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-media --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "QyB-tN8tRqWvGDTTYWBSOA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64/debug-mochitest-media-e10s", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "fkM8im2dRg6j9X-D-CWFvg" + }, + "fkmehCN8Qz-eB1qR5XzmLw": { + "attributes": { + "always_target": false, + "build_platform": "macosx64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "7", + "test_platform": "macosx64/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-7", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "macosx" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "MOEaYbe7T-SYz4kt8TEXYA" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "osx-10-10" + }, + "symbol": "wpt7", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-macosx64/debug-web-platform-tests-e10s-7", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--test-type=testharness", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/MOEaYbe7T-SYz4kt8TEXYA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=7" + ] + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LANG": "en_US.UTF-8", + "LC_ALL": "en_US.UTF-8", + "MOZ_AUTOMATION": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "MOZ_NO_REMOTE": "1", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "SHELL": "/bin/bash", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "XPC_SERVICE_NAME": "0" + }, + "maxRunTime": 7200, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "MOEaYbe7T-SYz4kt8TEXYA" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [], + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.484771b6502346a70f59" + }, + "priority": "very-low", + "provisionerId": "releng-hardware", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.484771b6502346a70f59" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-7", + "os": "macosx", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-osx-1010" + }, + "task_id": "fkmehCN8Qz-eB1qR5XzmLw" + }, + "flKxCokURACW-LJzYiaKLw": { + "attributes": { + "always_target": false, + "build_platform": "win64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "windows10-64-devedition/opt", + "unittest_flavor": "web-platform-tests-reftests", + "unittest_suite": "web-platform-tests-reftests", + "unittest_try_name": "web-platform-tests-reftests-e10s" + }, + "dependencies": { + "build": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-reftests-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests-reftests", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "EQ7BHnMjQ7-laAYNB87oQg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "windows10-64-devedition" + }, + "symbol": "Wr", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows10-64-devedition/opt-web-platform-tests-reftests-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\web_platform_tests.py --cfg mozharness\\configs\\web_platform_tests\\prod_config_windows_taskcluster.py --test-type=reftest --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/EQ7BHnMjQ7-laAYNB87oQg/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=reftest --e10s" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "EQ7BHnMjQ7-laAYNB87oQg" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows10-64-devedition/opt-web-platform-tests-reftests-e10s", + "os": "windows", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win10-64" + }, + "task_id": "flKxCokURACW-LJzYiaKLw" + }, + "fluhjodPStyygwj592ffdw": { + "attributes": { + "always_target": false, + "build_platform": "linux-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "linux32-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "HEKrob2nT2y03EjVyOyVWg" + }, + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "HEKrob2nT2y03EjVyOyVWg", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-devedition" + }, + "symbol": "bc6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/HEKrob2nT2y03EjVyOyVWg/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.9698207836c17892a056" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.9698207836c17892a056" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-devedition/opt-mochitest-browser-chrome-e10s-6", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fluhjodPStyygwj592ffdw" + }, + "fmRxSKOnSZa80gGICFFLrw": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "10", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-10", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 10, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "bc10", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-10", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--disable-stylo", + "--total-chunk=16", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.2b762dc5d834a4adfd72" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.2b762dc5d834a4adfd72" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-mochitest-browser-chrome-e10s-10", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fmRxSKOnSZa80gGICFFLrw" + }, + "fn-g1OR3StGBEqidtVLPUw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "kind": "build", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null + }, + "dependencies": {}, + "kind": "build", + "label": "build-android-api-16-gradle/opt", + "optimization": { + "skip-unless-schedules": [ + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "BW8vSUH1SbOPEd52XtjWNQ", + "I7Ps06L_RXiYnvXmdyzgyw", + "JDK3DN9yRmGSrRjNSqyMCw", + "UiMK4BDOTRyD-ct_25PQJQ", + "WhRCE26oRqCDZrpvO2fMYQ", + "ZvnwVi2KRxm9HH0FVlAXag" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chainOfTrust": { + "inputs": { + "docker-image": "UiMK4BDOTRyD-ct_25PQJQ" + } + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Executed by TaskCluster", + "groupSymbol": "tc", + "jobKind": "build", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "Bng", + "tier": 1 + } + }, + "metadata": { + "description": "Android 4.0 api-16+ (non-Gradle) Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "build-android-api-16-gradle/opt", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/build" + }, + "payload": { + "artifacts": { + "public/android/R": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "type": "directory" + }, + "public/android/maven": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "type": "directory" + }, + "public/build": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk", + "type": "file" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-build-android-api-16-gradle-opt-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout", + "/builds/worker/workspace/build/src", + "--tools-checkout", + "/builds/worker/workspace/build/tools", + "--", + "/builds/worker/workspace/build/src/taskcluster/scripts/builder/build-linux.sh" + ], + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MH_BRANCH": "maple", + "MH_BUILD_POOL": "taskcluster", + "MH_CUSTOM_BUILD_VARIANT_CFG": "api-16-gradle", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py platform_supports_post_upload_to_latest.py", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_AUTOMATION": "1", + "MOZ_BUILD_DATE": "20180109190725", + "MOZ_SCM_LEVEL": "3", + "MOZ_TOOLCHAINS": "project/gecko/android-sdk/android-sdk-linux.tar.xz@JDK3DN9yRmGSrRjNSqyMCw public/build/clang.tar.xz@I7Ps06L_RXiYnvXmdyzgyw public/build/rustc.tar.xz@ZvnwVi2KRxm9HH0FVlAXag public/build/sccache2.tar.xz@WhRCE26oRqCDZrpvO2fMYQ public/build/proguard-jar.tar.xz@BW8vSUH1SbOPEd52XtjWNQ", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "USE_SCCACHE": "1" + }, + "features": { + "chainOfTrust": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "UiMK4BDOTRyD-ct_25PQJQ", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + } + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "index.gecko.v2.maple.latest.mobile.android-api-16-gradle-opt", + "index.gecko.v2.maple.pushdate.2018.01.09.20180109190725.mobile.android-api-16-gradle-opt", + "index.gecko.v2.maple.pushlog-id.343.mobile.android-api-16-gradle-opt", + "index.gecko.v2.maple.revision.054fe08d229f064a71bae9bb793e7ab8d95eff61.mobile.android-api-16-gradle-opt", + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [ + "queue:get-artifact:project/gecko/android-sdk/*", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/releng/gecko/build/level-3/*", + "assume:project:taskcluster:gecko:level-3-sccache-buckets", + "docker-worker:cache:level-3-maple-build-android-api-16-gradle-opt-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "build", + "label": "build-android-api-16-gradle/opt", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-3-b-android" + }, + "task_id": "fn-g1OR3StGBEqidtVLPUw" + }, + "fnA_swvRTpWnRnLqZRk33Q": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-devtools-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-devtools-chrome-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "dt5", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-devtools-chrome-e10s-5", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32" + }, + "task_id": "fnA_swvRTpWnRnLqZRk33Q" + }, + "fnBWTOe6Rlmf18nqgnq5UQ": { + "attributes": { + "always_target": false, + "build_platform": "linux-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux32-nightly/opt", + "unittest_flavor": "functional remote", + "unittest_suite": "firefox-ui", + "unittest_try_name": "firefox-ui-functional-remote-e10s" + }, + "dependencies": { + "build": "ERGOeyR0ReW_HCzxf4t_eQ" + }, + "kind": "test", + "label": "test-linux32-nightly/opt-firefox-ui-functional-remote-e10s", + "optimization": { + "skip-unless-schedules-or-seta": [ + "firefox-ui", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ERGOeyR0ReW_HCzxf4t_eQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Firefox functional tests (remote) executed by TaskCluster with e10s", + "groupSymbol": "tc-Fxfn-r-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-nightly" + }, + "symbol": "en-US", + "tier": 2 + } + }, + "metadata": { + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-nightly/opt-firefox-ui-functional-remote-e10s", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ERGOeyR0ReW_HCzxf4t_eQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.3be1967b5c51d4ae0b8c" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.3be1967b5c51d4ae0b8c" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-nightly/opt-firefox-ui-functional-remote-e10s", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fnBWTOe6Rlmf18nqgnq5UQ" + }, + "fovVavKeRwGRWhP4mmkMVg": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "11", + "test_platform": "linux64/debug", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-11", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "11", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-mochitest-e10s-11", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.865676786fd009ca052d" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.865676786fd009ca052d" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-mochitest-e10s-11", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fovVavKeRwGRWhP4mmkMVg" + }, + "fpddNlOBQSGm6VZOIa7-aQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": false, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-chrome-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "c1", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-chrome-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.aa631ce68dadee1fb523" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.aa631ce68dadee1fb523" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-chrome-1", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fpddNlOBQSGm6VZOIa7-aQ" + }, + "frg7_fCUTxqMFhBbIIlR-Q": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux32-stylo-disabled/debug", + "unittest_flavor": "web-platform-tests", + "unittest_suite": "web-platform-tests", + "unittest_try_name": "web-platform-tests-e10s" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "web-platform-tests", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Web platform tests executed by TaskCluster with e10s", + "groupSymbol": "tc-W-e10s", + "jobKind": "test", + "machine": { + "platform": "linux32-stylo-disabled" + }, + "symbol": "wpt5", + "tier": 1 + } + }, + "metadata": { + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--disable-stylo", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.b87ed69be56649f3e717" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.b87ed69be56649f3e717" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32-stylo-disabled/debug-web-platform-tests-e10s-5", + "os": "linux", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "frg7_fCUTxqMFhBbIIlR-Q" + }, + "fu-J5ff0QeGGg-5xTZFgvA": { + "attributes": { + "always_target": false, + "build_platform": "linux64-devedition-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "mozilla-beta", + "maple" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "2", + "test_platform": "linux64-devedition/opt", + "unittest_flavor": "browser-chrome-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-browser-chrome-e10s" + }, + "dependencies": { + "build": "P4fV6_sIRbaB1wx8qiJ0ng" + }, + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-2", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "P4fV6_sIRbaB1wx8qiJ0ng", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64-devedition" + }, + "symbol": "bc2", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-2", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "browser", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/P4fV6_sIRbaB1wx8qiJ0ng/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.d5f191d4d96fea1a1b4e" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.d5f191d4d96fea1a1b4e" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-devedition/opt-mochitest-browser-chrome-e10s-2", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fu-J5ff0QeGGg-5xTZFgvA" + }, + "fv1V3Cz5T8S68tkvi12N9A": { + "attributes": { + "always_target": false, + "build_platform": "linux64", + "build_type": "debug", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "5", + "test_platform": "linux64/debug", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "GSdLkQyXQS61lC5PTo0YzA" + }, + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-5", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "GSdLkQyXQS61lC5PTo0YzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R5", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64/debug-reftest-e10s-5", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/GSdLkQyXQS61lC5PTo0YzA/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.03fe3223e5bf21b256c4" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.03fe3223e5bf21b256c4" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64/debug-reftest-e10s-5", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fv1V3Cz5T8S68tkvi12N9A" + }, + "fxSQ8r6nSd-dYq46vHHwEw": { + "attributes": { + "always_target": false, + "build_platform": "win32-nightly", + "build_type": "opt", + "e10s": true, + "kind": "test", + "nightly": true, + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "6", + "test_platform": "windows7-32-nightly/opt", + "unittest_flavor": "mochitest-gl", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-webgl-e10s" + }, + "dependencies": { + "build": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-6", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "windows" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "YbFzYsrlQnCuiSGlgfZTiQ" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster with e10s", + "groupSymbol": "tc-M-e10s", + "jobKind": "test", + "machine": { + "platform": "windows7-32-nightly" + }, + "symbol": "gl6", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-6", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "expires": { + "relative-datestamp": "1 year" + }, + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=mochitest-gl --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/YbFzYsrlQnCuiSGlgfZTiQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "MOZ_AUTOMATION": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "YbFzYsrlQnCuiSGlgfZTiQ" + }, + "directory": ".", + "format": "zip" + } + ], + "osGroups": [] + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343" + ], + "scopes": [], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-windows7-32-nightly/opt-mochitest-webgl-e10s-6", + "os": "windows", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "workerType": "gecko-t-win7-32-gpu" + }, + "task_id": "fxSQ8r6nSd-dYq46vHHwEw" + }, + "fy1gRkFCRqSAGWGqtTlPLw": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16-gradle", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "1", + "test_platform": "android-4.3-arm7-api-16-gradle/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest" + }, + "dependencies": { + "build": "fn-g1OR3StGBEqidtVLPUw" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-1", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "XUDNfri0ReazT-7gyTTAYg", + "fn-g1OR3StGBEqidtVLPUw" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 1, + "total": 24 + }, + "index": { + "rank": 0 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Reftests executed by TaskCluster", + "groupSymbol": "tc-R", + "jobKind": "test", + "machine": { + "platform": "android-api-16-gradle" + }, + "symbol": "R1", + "tier": 2 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16-gradle/opt-reftest-1", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=24", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/fn-g1OR3StGBEqidtVLPUw/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 7200, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.5c7d8eeebf24f1b912f1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.5c7d8eeebf24f1b912f1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16-gradle/opt-reftest-1", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fy1gRkFCRqSAGWGqtTlPLw" + }, + "fyky6Xa-RIyskYzUQXv4kQ": { + "attributes": { + "always_target": false, + "build_platform": "linux64-asan", + "build_type": "opt", + "e10s": true, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux64-asan/opt", + "unittest_flavor": "reftest", + "unittest_suite": "reftest", + "unittest_try_name": "reftest-e10s" + }, + "dependencies": { + "build": "ACCk3nP9R22Qe9Om3DtDVQ" + }, + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "reftest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "ACCk3nP9R22Qe9Om3DtDVQ", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "collection": { + "asan": true + }, + "groupName": "Reftests executed by TaskCluster with e10s", + "groupSymbol": "tc-R-e10s", + "jobKind": "test", + "machine": { + "platform": "linux64" + }, + "symbol": "R3", + "tier": 1 + } + }, + "metadata": { + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux64-asan/opt-reftest-e10s-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=3" + ], + "env": { + "ENABLE_E10S": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ACCk3nP9R22Qe9Om3DtDVQ/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.f335251a3a413cc2c435" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.f335251a3a413cc2c435" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux64-asan/opt-reftest-e10s-3", + "os": "linux", + "test-type": "reftest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fyky6Xa-RIyskYzUQXv4kQ" + }, + "fyzS5pH6RSaECqIcoa66ow": { + "attributes": { + "always_target": false, + "build_platform": "android-api-16", + "build_type": "opt", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "19", + "test_platform": "android-4.3-arm7-api-16/opt", + "unittest_flavor": "plain-chunked", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest" + }, + "dependencies": { + "build": "KouO1HEWSrqfX2R2erKTzA" + }, + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-19", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "android" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "KouO1HEWSrqfX2R2erKTzA", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 19, + "total": 20 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "opt": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "symbol": "19", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-19", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace", + "level-3-tooltool-cache-bc7e1a7ad01a345394f1": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=20", + "--this-chunk=19", + "--download-symbols=ondemand" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "plain", + "MOZHARNESS_ACTIONS": "get-secrets", + "MOZHARNESS_CONFIG": "android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/KouO1HEWSrqfX2R2erKTzA/artifacts/public/build/target.apk", + "MOZ_AUTOMATION": "1", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache" + }, + "features": { + "allowPtrace": true, + "relengAPIProxy": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 5400, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.70a4949a7cd43df4f0e1" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.70a4949a7cd43df4f0e1" + ], + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-tooltool-cache-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-19", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-xlarge" + }, + "task_id": "fyzS5pH6RSaECqIcoa66ow" + }, + "fzCEz7n5Tu2SMyAS6bc1-g": { + "attributes": { + "always_target": false, + "build_platform": "linux", + "build_type": "debug", + "e10s": false, + "kind": "test", + "run_on_projects": [ + "all" + ], + "shipping_phase": null, + "shipping_product": null, + "test_chunk": "3", + "test_platform": "linux32/debug", + "unittest_flavor": "chrome", + "unittest_suite": "mochitest", + "unittest_try_name": "mochitest-chrome" + }, + "dependencies": { + "build": "JJOBexggRjyRpIg6cI91yw" + }, + "kind": "test", + "label": "test-linux32/debug-mochitest-chrome-3", + "optimization": { + "skip-unless-schedules-or-seta": [ + "mochitest", + "linux" + ] + }, + "task": { + "created": { + "relative-datestamp": "0 seconds" + }, + "deadline": { + "relative-datestamp": "1 day" + }, + "dependencies": [ + "JJOBexggRjyRpIg6cI91yw", + "XUDNfri0ReazT-7gyTTAYg" + ], + "expires": { + "relative-datestamp": "1 year" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "index": { + "rank": 1515524845 + }, + "parent": "VQU9QMO4Teq7zr91FhBusg", + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests executed by TaskCluster", + "groupSymbol": "tc-M", + "jobKind": "test", + "machine": { + "platform": "linux32" + }, + "symbol": "c3", + "tier": 1 + } + }, + "metadata": { + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=maple&revision=054fe08d229f064a71bae9bb793e7ab8d95eff61))", + "name": "test-linux32/debug-mochitest-chrome-3", + "owner": "asasaki@mozilla.com", + "source": "https://hg.mozilla.org/projects/maple/file/054fe08d229f064a71bae9bb793e7ab8d95eff61/taskcluster/ci/test" + }, + "payload": { + "artifacts": { + "public/logs/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/upload/logs/", + "type": "directory" + }, + "public/test": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/artifacts/", + "type": "directory" + }, + "public/test_info/": { + "expires": { + "relative-datestamp": "1 year" + }, + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "type": "directory" + } + }, + "cache": { + "level-3-checkouts-bc7e1a7ad01a345394f1": "/builds/worker/checkouts", + "level-3-maple-test-workspace-bc7e1a7ad01a345394f1": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "ENABLE_E10S": "false", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/projects/maple", + "GECKO_HEAD_REV": "054fe08d229f064a71bae9bb793e7ab8d95eff61", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOCHITEST_FLAVOR": "chrome", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/mozharness.zip", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/JJOBexggRjyRpIg6cI91yw/artifacts/public/build/target.tar.bz2", + "MOZ_AUTOMATION": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "NEED_PULSEAUDIO": "true", + "NEED_WINDOW_MANAGER": "true", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace" + }, + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "image": { + "path": "public/image.tar.zst", + "taskId": "XUDNfri0ReazT-7gyTTAYg", + "type": "task-image" + }, + "maxRunTime": 3600, + "onExitStatus": { + "retry": [ + 4 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/maple.042afa0a2366368206f7" + }, + "priority": "very-low", + "provisionerId": "aws-provisioner-v1", + "routes": [ + "tc-treeherder.v2.maple.054fe08d229f064a71bae9bb793e7ab8d95eff61.343", + "coalesce.v1.maple.042afa0a2366368206f7" + ], + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-maple-test-workspace-bc7e1a7ad01a345394f1", + "docker-worker:cache:level-3-checkouts-bc7e1a7ad01a345394f1" + ], + "tags": { + "createdForUser": "asasaki@mozilla.com", + "kind": "test", + "label": "test-linux32/debug-mochitest-chrome-3", + "os": "linux", + "test-type": "mochitest", + "worker-implementation": "docker-worker" + }, + "workerType": "gecko-t-linux-large" + }, + "task_id": "fzCEz7n5Tu2SMyAS6bc1-g" + } +} \ No newline at end of file diff --git a/scriptworker/test/test_cot_verify.py b/scriptworker/test/test_cot_verify.py index fd6172c0..6c1e3062 100644 --- a/scriptworker/test/test_cot_verify.py +++ b/scriptworker/test/test_cot_verify.py @@ -14,7 +14,7 @@ from taskcluster.exceptions import TaskclusterFailure import scriptworker.cot.verify as cotverify from scriptworker.exceptions import CoTError, ScriptWorkerGPGException, DownloadError -from scriptworker.utils import makedirs +from scriptworker.utils import makedirs, load_json_or_yaml from . import noop_async, noop_sync, rw_context, tmpdir, touch assert rw_context, tmpdir # silence pyflakes @@ -30,6 +30,9 @@ ) +COTV2_DIR = os.path.join(os.path.dirname(__file__), "data", "cotv2") + + async def die_async(*args, **kwargs): raise CoTError("x") @@ -1086,8 +1089,59 @@ async def fake_load(*args, **kwargs): # verify_parent_task_definition {{{1 -def test_verify_parent_task_definition(chain, decision_link, action_link, cron_link, mocker): - pass +@pytest.mark.asyncio +@pytest.mark.parametrize("name,task_id,path,decision_task_id,decision_path", (( + "decision", "VQU9QMO4Teq7zr91FhBusg", os.path.join(COTV2_DIR, "decision_hg-push.json"), + "VQU9QMO4Teq7zr91FhBusg", os.path.join(COTV2_DIR, "decision_hg-push.json"), +), ( + "action", "MP8uhRdMTjm__Q_sA0GTnA", os.path.join(COTV2_DIR, "action_relpro.json"), + "VQU9QMO4Teq7zr91FhBusg", os.path.join(COTV2_DIR, "decision_hg-push.json"), +), ( + "decision", "D4euZNyCRtuBci-fnsfn7A", os.path.join(COTV2_DIR, "cron.json"), + "D4euZNyCRtuBci-fnsfn7A", os.path.join(COTV2_DIR, "cron.json"), +))) +async def test_verify_parent_task_definition(chain, name, task_id, path, + decision_task_id, decision_path, mocker): + link = cotverify.LinkOfTrust(chain.context, name, task_id) + link.task = load_json_or_yaml(path, is_path=True) + if task_id == decision_task_id: + decision_link = link + else: + decision_link = cotverify.LinkOfTrust(chain.context, 'decision', decision_task_id) + decision_link.task = load_json_or_yaml(decision_path, is_path=True) + + async def fake_load_url(context, url, path, **kwargs): + if path.endswith("source_tmpl.yml"): + return load_json_or_yaml( + os.path.join(COTV2_DIR, ".taskcluster.yml"), is_path=True, file_type='yaml' + ) + elif path.endswith("projects.yml"): + return load_json_or_yaml( + os.path.join(COTV2_DIR, "projects.yml"), is_path=True, file_type='yaml' + ) + + def fake_load(string, is_path=False, **kwargs): + if is_path: + if string.endswith("parameters.yml"): + return load_json_or_yaml( + os.path.join(COTV2_DIR, "parameters.yml"), is_path=True, file_type='yaml' + ) + elif string.endswith("actions.json"): + return load_json_or_yaml(os.path.join(COTV2_DIR, "actions.json"), is_path=True) + else: + return load_json_or_yaml(string) + + async def fake_pushlog(_): + return load_json_or_yaml(os.path.join(COTV2_DIR, "pushlog.json"), is_path=True) + + mocker.patch.object(cotverify, 'load_json_or_yaml_from_url', new=fake_load_url) + mocker.patch.object(cotverify, 'load_json_or_yaml', new=fake_load) + mocker.patch.object(cotverify, 'get_pushlog_info', new=fake_pushlog) + + chain.links = list(set([decision_link, link])) + await cotverify.verify_parent_task_definition( + chain, link + ) # verify_parent_task {{{1